7
スペース/タブ/改行を取り除く-Python
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 簡単なことのようですが、ここで何かが足りません。何かをインポートする必要がありますか?