Python中的strip()函數是用來刪除字符串中的指定字符,默認情況下是刪除字符串兩端的空格或換行符。
可以使用以下語法來使用strip()函數:
string.strip([chars])
其中,string表示要操作的字符串,[chars]是可選參數,用來指定要刪除的字符。如果不指定chars,則默認刪除字符串兩端的空格或換行符。
以下是一些使用strip()函數的示例:
示例1:刪除字符串兩端的空格
string = " hello world "
new_string = string.strip()
print(new_string) # 輸出: "hello world"
示例2:刪除字符串兩端的特定字符
string = ">>>hello world<<<"
new_string = string.strip("><")
print(new_string) # 輸出: "hello world"
示例3:刪除字符串兩端的換行符
string = "\nhello world\n"
new_string = string.strip("\n")
print(new_string) # 輸出: "hello world"
需要注意的是,strip()函數不會修改原始字符串,而是返回一個新的字符串。