当前位置: 代码迷 >> 综合 >> Python strip()方法学习
  详细解决方案

Python strip()方法学习

热度:91   发布时间:2024-03-07 02:19:30.0

Python strip() 方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
注意:该方法只能删除==开头或是结尾的字符==,不能删除中间部分的字符。

语法:
str.strip([chars])
chars : 移除字符串头尾指定的字符序列。

返回值:
返回移除字符串头尾指定的字符生成的新字符串。

s = "0000000331230000000"; 
print (s.strip( '0' )) # 去除首尾字符 0
''' 33123 '''s2 = " trrt ";   # 去除首尾空格
print(s2.strip())
''' trrt ''' s3 = "123abcrunoob321"
print(s3.strip( '12' ))  # 字符序列为 12
''' 3abcrunoob3 '''

参考:
https://www.runoob.com/python/att-string-strip.html