溫馨提示×

python怎么去除文本的空格

小億
107
2023-11-13 10:21:35
欄目: 編程語言

在Python中,可以使用字符串的 strip() 方法去除文本的空格。strip() 方法會刪除字符串開頭和結(jié)尾的空格。

示例代碼如下:

text = "   hello world   "
new_text = text.strip()
print(new_text)  # 輸出結(jié)果為 "hello world"

如果要刪除字符串中所有的空格,可以使用 replace() 方法將空格替換為空字符串。

示例代碼如下:

text = "   hello world   "
new_text = text.replace(" ", "")
print(new_text)  # 輸出結(jié)果為 "helloworld"

0