在Python中,可以使用strip()方法來刪除字符串兩端的空白字符(包括空格、制表符、換行符等)。
strip()
例如:
s = " hello world " print(s.strip()) # 輸出結果為"hello world"
如果想刪除字符串中間的空白字符,可以使用replace()方法將空白字符替換為空字符串。
replace()
s = "hello world" s = s.replace(" ", "") print(s) # 輸出結果為"helloworld"
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529