概述
strip()函数 去空格nrt函数的用法
strip 同时去掉左右两边的空格(推荐学习:Python视频教程)
lstrip 去掉左边的空格
rstrip 去掉右边的空格
具体示例如下:
>>>a=" hello world!! "
>>>a.lstrip() 'hello world!! '
>>>a.rstrip() ' hello world!!'
>>>a.strip() 'hello world!!'
登录后复制
声明:s为字符串,rm为要删除的字符序列
s.strip(rm) 删除s字符串中开头、结尾处,位于 rm删除序列的字符
s.lstrip(rm) 删除s字符串中开头处,位于 rm删除序列的字符
s.rstrip(rm) 删除s字符串中结尾处,位于 rm删除序列的字符
注意:
当rm为空时,默认删除空白符(包括’n’, ‘r’, ‘t’, ’ ')
>>> a = ' hello world!!'
>>> a.strip()
'hello world!!'
>>> a='tthello world!!'
'hello world!!'
>>> a = 'hello world!!rn'
>>> a.strip()
'hello world!!'
登录后复制
最后
以上就是霸气过客为你收集整理的Python怎么去掉最后的空格的全部内容,希望文章能够帮你解决Python怎么去掉最后的空格所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复