strip在python中怎么使用

48次阅读
没有评论

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

在 Python 中,strip()函数用于去除字符串两端的指定字符(默认为空格)或空白符。可以使用以下方式来使用 strip() 函数:

  1. 使用默认的空格字符去除两端空格:
s = "  hello world  "
print(s.strip())  # Output: "hello world"
  1. 指定要去除的字符:
s = "!!!hello world!!!"
print(s.strip("!"))  # Output: "hello world"
  1. 去除指定字符集合:
s = "!!!hello world!!!"
print(s.strip("!d"))  # Output: "hello worl"

需要注意的是,strip()函数会返回一个新的字符串,原始字符串不会被修改。

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

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