Python中的strip()函數用于去除字符串首尾的指定字符(默認為空格)。
函數語法:strip([chars])
其中,chars參數是可選的,用于指定要去除的字符。如果沒有指定chars參數,則默認去除字符串首尾的空格字符。
示例:
string = " hello, world! "
new_string = string.strip()
print(new_string) # 輸出:hello, world!
string = "-----hello, world!-----"
new_string = string.strip('-')
print(new_string) # 輸出:hello, world!
在第一個示例中,strip()函數去除了字符串首尾的空格字符。
在第二個示例中,strip(‘-’)函數去除了字符串首尾的連續的"-"字符。