在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"