python中str.strip()怎么使用

小億
215
2023-10-18 13:21:39

str.strip()方法用于去除字符串首尾指定字符,默認(rèn)去除空格。

使用方法如下:

str.strip([chars])

其中,chars為可選參數(shù),用于指定需要去除的字符。

示例:

s = "  hello world  "
print(s.strip())  # 輸出:"hello world"
s = "  hello world  "
print(s.strip(" "))  # 輸出:"hello world"
s = "#hello world#"
print(s.strip("#"))  # 輸出:"hello world"

請(qǐng)注意,str.strip()方法只能去除字符串首尾的指定字符,中間部分不會(huì)被去除。如果需要去除字符串中所有指定字符,可以使用str.replace()方法。

0