Linux の python 2.7 ですべてのスペース/タブ/改行を削除しようとしています。
私はこれを書きました、それは仕事をするはずです:
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
簡単なことのように思えますが、ここで何かが欠けています。何かをインポートする必要がありますか?