在Python中,strip()
函數用于去除字符串兩端的指定字符(默認為空格)或空白符。可以使用以下方式來使用strip()
函數:
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()
函數會返回一個新的字符串,原始字符串不會被修改。