strip的用法是去除字符串中前后两端的xx字符,xx是一个字符数组,并不是去掉“”中的字符串, 数组中包含的字符都要在字符串中去除.默认去掉空格,lstrip则是去掉左边的,rstrip是右边的 见代码: In [1]: s = ' abc ' In [2]: s.strip() Out[2]: 'abc' In [3]: s = 'abc def abc' In [4]: s.strip() Out[4]: 'abc def abc' In [5]: s.strip('abc') Out[5…
一.简介 strip经常用来去除目标文件中的一些符号表.调试符号表信息,以减小程序的大小. 二.语法 https://sourceware.org/binutils/docs/binutils/strip.html 三.实例 1)Remove all symbol and relocation information strip --strip-all [需要处理的文件] 2)去掉调试信息 strip --strip-debug [需要处理的文件] 3)Remove a particular s…