python remove_whitespace_and_escapes_python

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python remove_whitespace_and_escapes_python相关的知识,希望对你有一定的参考价值。


# <https://stackoverflow.com/questions/10711116/strip-spaces-tabs-newlines-python>

myString="I want to Remove all white \t spaces, new lines \n and tabs \t"

# Use str.split([sep[, maxsplit]]) with no sep or sep=None:

# >>> myString.split()
['I', 'want', 'to', 'Remove', 'all', 'white', 'spaces,', 'new', 'lines', 'and', 'tabs']

# >>> ' '.join(myString.split())
'I want to Remove all white spaces, new lines and tabs'

以上是关于python remove_whitespace_and_escapes_python的主要内容,如果未能解决你的问题,请参考以下文章

python中__call__方法解析

python中的__name__

求一道python编程题

Python __name__ == ‘__main__’详细解释-Python零基础入门教程

Python __dict__与dir()区别

Python零碎