Python的strip()
方法用于移除字符串中的指定字符,默認移除字符串兩端的空白字符(包括空格、制表符、換行符等)。
strip()
方法的語法如下:
string.strip([chars])
其中,string
是要處理的字符串,chars
是可選參數,用于指定要移除的字符。如果不指定chars
參數,則默認移除字符串兩端的空白字符。
示例:
string = " Hello, World! "
print(string.strip()) # 輸出: "Hello, World!"
string = "www.example.com"
print(string.strip("w")) # 輸出: ".example.com"
在第一個示例中,strip()
方法移除了字符串兩端的空白字符。在第二個示例中,strip("w")
方法移除了字符串兩端的"w"字符。