python strip()函数

strip函数原型

声明:s为字符串,rm为要删除的字符序列. 只能删除开头或是结尾的字符或是字符串。不能删除中间的字符或是字符串。

s.strip(rm)        删除s字符串中开头、结尾处,位于 rm删除序列的字符

s.lstrip(rm)       删除s字符串中开头处,位于 rm删除序列的字符

s.rstrip(rm)      删除s字符串中结尾处,位于 rm删除序列的字符

注意

1. 当rm为空时,默认删除空白符(包括'\n', '\r',  '\t',  ' ')
例如
>>> a='    123'
>>> a.strip()
'123'
>>> a='\t\tabc'
>>> a.strip()
'abc'
>>> a='sdff\r\n'
>>> a.strip()
'sdff'
2.这里的rm删除序列只要边(开头或结尾)上的字符在删除序列内,就删除掉。
例如:
>>> a='123abc'
>>> a.strip('21')
'3abc'
>>> a.strip('12')
'3abc'

3.删除指定的首尾字符
例如:
>>> str="0000003210runoob01230000"
>>> str.strip('0')
'3210runoob0123'
参考:1.https://www.cnblogs.com/yyxayz/p/4034299.html
          2.http://www.runoob.com/python/att-string-strip.html



你可能感兴趣的:(python strip()函数)