python中strip怎么使用

avatar
作者
筋斗云
阅读量:1

在Python中,strip()是一个字符串方法,用于删除字符串的开头和结尾的指定字符(默认是空格字符)。

使用方法如下:

  1. 删除字符串开头和结尾的空格字符:
string = "  hello world  " result = string.strip() print(result)  # 输出: "hello world" 
  1. 删除字符串开头和结尾的指定字符:
string = "!!!hello world!!!" result = string.strip("!") print(result)  # 输出: "hello world" 
  1. 删除字符串开头和结尾的多个指定字符:
string = "!!!hello world!!!" result = string.strip("! ") print(result)  # 输出: "hello world" 

注意:

  • strip()方法返回一个新的字符串,原始字符串不会被修改。

  • 如果没有指定参数,默认删除开头和结尾的空格字符。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!