strip()函數用于去除字符串中的指定字符,默認情況下會去除字符串首尾的空格或換行符。
函數語法如下:
string.strip([chars])
參數說明:
例子:
string = " Hello World "
print(string.strip()) # 輸出:Hello World
string = "##Hello World##"
print(string.strip('#')) # 輸出:Hello World
在第一個例子中,strip()函數會去除字符串首尾的空格。
在第二個例子中,strip(‘#’)函數會去除字符串首尾的"#"字符。