python中str.strip()怎么使用

56次阅读
没有评论

共计 329 个字符,预计需要花费 1 分钟才能阅读完成。

str.strip() 方法用于去除字符串首尾指定字符,默认去除空格。
使用方法如下:

str.strip([chars])

其中,chars 为可选参数,用于指定需要去除的字符。
示例:

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

请注意,str.strip() 方法只能去除字符串首尾的指定字符,中间部分不会被去除。如果需要去除字符串中所有指定字符,可以使用 str.replace() 方法。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-21发表,共计329字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)