共计 279 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用字符串的 strip()
方法去除文本的空格。strip()
方法会删除字符串开头和结尾的空格。
示例代码如下:
text = " hello world "
new_text = text.strip()
print(new_text) # 输出结果为 "hello world"
如果要删除字符串中所有的空格,可以使用 replace()
方法将空格替换为空字符串。
示例代码如下:
text = " hello world "
new_text = text.replace(" ", "")
print(new_text) # 输出结果为 "helloworld"
丸趣 TV 网 – 提供最优质的资源集合!
正文完