有以下幾種方法可以去除字符串中的空格:
string = "hello world"
string = string.replace(" ", "")
print(string) # 輸出"helloworld"
string = "hello world"
string = "".join(string.split())
print(string) # 輸出"helloworld"
import re
string = "hello world"
string = re.sub(r"\s", "", string)
print(string) # 輸出"helloworld"
這些方法都可以去除字符串中的空格,選擇哪種方法取決于具體的需求和使用場景。