在Python中,strip函數用于去除字符串首尾的指定字符(默認為空格字符)。
strip函數的語法如下:
string.strip([chars])
參數說明:
chars
(可選):指定要去除的字符。如果不指定,則默認去除字符串首尾的空格字符。示例:
string = " hello world "
print(string.strip()) # 輸出: "hello world"
string = "---hello world---"
print(string.strip("-")) # 輸出: "hello world"
string = "123hello world321"
print(string.strip("123")) # 輸出: "hello world"
在上面的示例中,第一個例子是去除字符串string
首尾的空格字符。第二個例子是去除字符串string
首尾的連續的-
字符。第三個例子是去除字符串string
首尾的連續的1
、2
、3
字符。