是否有一个Python函数将从字符串中删除空白(空格和制表符)?

所以给定的输入" \t example string\t "变成了"example string"


当前回答

空格包括空格、制表符和CRLF。我们可以使用一个优雅的单行字符串函数翻译。

你好。翻译(不,不,不)

或者,如果你想彻底一点

import string
' hello  apple'.translate(None, string.whitespace)

其他回答

前导空格和尾随空格:

s = '   foo    \t   '
print s.strip() # prints "foo"

否则,正则表达式工作:

import re
pat = re.compile(r'\s+')
s = '  \t  foo   \t   bar \t  '
print pat.sub('', s) # prints "foobar"

你也可以使用非常简单的基本函数:str.replace(),用于空格和制表符:

>>> whitespaces = "   abcd ef gh ijkl       "
>>> tabs = "        abcde       fgh        ijkl"

>>> print whitespaces.replace(" ", "")
abcdefghijkl
>>> print tabs.replace(" ", "")
abcdefghijkl

简单易行。

(re.sub(' +', ' ',(my_str。取代(' \ n ',' ')))). 带()

这将删除所有不需要的空格和换行符。希望这对你有所帮助

import re
my_str = '   a     b \n c   '
formatted_str = (re.sub(' +', ' ',(my_str.replace('\n',' ')))).strip()

这将导致:

'a b \n c'将被更改为'a bc '

在Python中,trim方法被命名为strip:

str.strip()  # trim
str.lstrip()  # left trim
str.rstrip()  # right trim

如果使用Python 3:在打印语句中,以sep=""结束。这样就把所有的空格分开了。

例子:

txt="potatoes"
print("I love ",txt,"",sep="")

这将打印: 我喜欢土豆。

而不是: 我喜欢土豆。

在您的情况下,由于您将试图获得\t,执行sep="\t"