Tag:

“gcc -s”和“strip”命令有什么区别?

我不知道这两者之间有什么区别: gcc -s :从可执行文件中删除所有符号表和重定位信息。 strip :从目标文件中丢弃符号。 他们有相同的意思吗? 你用哪一个来: 减小可执行文件的大小? 加快运行?

去掉一个string列表中的所有元素

我必须在表格中列出一大堆单词: ['this\n', 'is\n', 'a\n', 'list\n', 'of\n', 'words\n'] 然后使用strip函数,把它变成: ['this', 'is', 'a', 'list', 'of', 'words'] 我以为我写了什么可以工作,但我不断收到一个错误说: “'list'对象没有属性'strip'” 这是我试过的代码: strip_list = [] for lengths in range(1,20): strip_list.append(0) #longest word in the text file is 20 characters long for a in lines: strip_list.append(lines[a].strip())

如何从string中去除所有的空格

如何去除pythonstring中的所有空格? 例如,我想像一个string像strip my spaces变成stripmyspaces ,但我似乎无法完成与strip() : >>> 'strip my spaces'.strip() 'strip my spaces'

用逗号分割并在Python中分隔空格

我有一些Python代码,分割在逗号,但不剥夺空白: >>> string = "blah, lots , of , spaces, here " >>> mylist = string.split(',') >>> print mylist ['blah', ' lots ', ' of ', ' spaces', ' here '] 我宁愿最终删除像这样的空白: ['blah', 'lots', 'of', 'spaces', 'here'] 我知道,我可以遍历列表和strip()每个项目,但是,因为这是Python,我猜测有一个更快,更简单,更优雅的方式来做到这一点。