Python中字符串去除空格的方法有多種,常用的方法有以下幾種:
s = " hello world "
s = s.strip()
print(s) # 輸出:hello world
s = " hello world "
s = s.lstrip()
print(s) # 輸出:hello world
s = " hello world "
s = s.rstrip()
print(s) # 輸出: hello world
s = " hello world "
s = s.replace(" ", "")
print(s) # 輸出:helloworld
import re
s = " hello world "
s = re.sub(r"\s", "", s)
print(s) # 輸出:helloworld
以上是常用的幾種方法,根據具體需求可以選擇適合的方法。