在Python中,strip()
函數(shù)用于去除字符串兩端的指定字符(默認(rèn)為空格)或空白符??梢允褂靡韵路绞絹?lái)使用strip()
函數(shù):
s = " hello world "
print(s.strip()) # Output: "hello world"
s = "!!!hello world!!!"
print(s.strip("!")) # Output: "hello world"
s = "!!!hello world!!!"
print(s.strip("!d")) # Output: "hello worl"
需要注意的是,strip()
函數(shù)會(huì)返回一個(gè)新的字符串,原始字符串不會(huì)被修改。