Python是一種非常流行的編程語(yǔ)言,能夠幫助程序員更便捷地實(shí)現(xiàn)各種功能。其中,去掉字符串中的空格是一個(gè)常見(jiàn)的需求。下面我們就來(lái)介紹一些Python的方法,幫助你去掉字符串中的空格。
方法一:使用strip函數(shù)
str = " hello world! " result = str.strip() print(result)
方法二:使用replace函數(shù)
str = " hello world! " result = str.replace(" ", "") print(result)
方法三:使用split函數(shù)
str = " hello world! " result = "".join(str.split()) print(result)
方法四:使用正則表達(dá)式
import re str = " hello world! " result = re.sub("\s+", "", str) print(result)
以上就是Python去掉字符串中空格的幾種方法,大家可以根據(jù)自己實(shí)際的需求選擇適合自己的方法。祝大家編程愉快!