您还可以使用lstrip字符串的开头删除空格,并使用rstrip从字符串的结尾删除空格。 另一种选择是使用正则表达式并匹配这些奇怪的空格字符 。这里有些例子: 删除字符串中的所有空格,即使单词之间也是如此: import re sentence = re.sub(r"\s+", "", sentence, flags=re.UNICODE) 在字符串的开头删除空格: impo...
在本文中,我们将了解字典功能以及如何使用 python 删除键之间的空格。此功能主要用于根据需要存储和检索数...
import string s = "Please \n don't \t hurt \x0b me." s = s.translate(None, string.whitespace[:-1]) # python 2.6 and up s = s.translate(string.maketrans('',''), string.whitespace[:-1]) # python 2.5, dunno further down >>> s "Please don't hurt me." 然后删除重复的空白...