在Python中字符串处理函数里有三个去空格(包括' ', ' ', ' ', ' ')的函数:
strip 同时去掉左右两边的空格
lstrip 去掉左边的空格
rstrip 去掉右边的空格
具体示例如下:
>>>a=" gho stwwl " >>>a.lstrip() 'gho stwwl ' >>>a.rstrip() ' gho stwwl' >>>a.strip() 'gho stwwl'
声明:s为字符串,rm为要删除的字符序列
s.strip(rm) 删除s字符串中开头、结尾处,位于 rm删除序列的字符
s.lstrip(rm) 删除s字符串中开头处,位于 rm删除序列的字符
s.rstrip(rm) 删除s字符串中结尾处,位于 rm删除序列的字符
注意:
1. 当rm为空时,默认删除空白符(包括'
', '
', ' ', ' ')
>>> a = ' 123' >>> a.strip() '123' >>> a=' abc' 'abc' >>> a = 'sdff ' >>> a.strip() 'sdff'
2.这里的rm删除序列是只要边(开头或结尾)上的字符在删除序列内,就删除掉。
>>> a = '123abc' >>> a.strip('21') '3abc' 结果是一样的 >>> a.strip('12') '3abc'
【相关推荐】
1. Python免费视频教程
2. 详解python中strip()和split()的使用方法
3. 详解python中strip函数的使用场景
4. python中strip()鲜为人知的陷阱
5. Python中你不知道的strip()函数的妙用