我试图删除 Linux 上 python 2.7中的所有空格/tab/newline。
我写了这个,应该可以了:
myString="I want to Remove all white \t spaces, new lines \n and tabs \t"
myString = myString.strip(' \n\t')
print myString
产出:
I want to Remove all white spaces, new lines
and tabs
这似乎是一件很简单的事情,但我在这里错过了一些东西。我应该进口一些东西吗?