在Python中,strip()是一個字符串方法,用于刪除字符串的開頭和結尾的指定字符(默認是空格字符)。
使用方法如下:
string = " hello world "
result = string.strip()
print(result) # 輸出: "hello world"
string = "!!!hello world!!!"
result = string.strip("!")
print(result) # 輸出: "hello world"
string = "!!!hello world!!!"
result = string.strip("! ")
print(result) # 輸出: "hello world"
注意:
strip()方法返回一個新的字符串,原始字符串不會被修改。
如果沒有指定參數,默認刪除開頭和結尾的空格字符。