博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python strip lstrip rstrip使用方法
阅读量:6094 次
发布时间:2019-06-20

本文共 573 字,大约阅读时间需要 1 分钟。

Python中的strip用于去除字符串的首尾字符,同理,lstrip用于去除左边的字符,rstrip用于去除右边的字符。

这三个函数都可传入一个参数,指定要去除的首尾字符。

需要注意的是,传入的是一个字符数组,编译器去除两端所有相应的字符,直到没有匹配的字符,比如:

theString = 'saaaay yes no yaaaass'

print theString.strip('say')
theString依次被去除首尾在['s','a','y']数组内的字符,直到字符在不数组内。所以,输出的结果为:
yes no
比较简单吧,lstrip和rstrip原理是一样的。

注意:当没有传入参数时,是默认去除首尾空格的。

theString = 'saaaay yes no yaaaass'

print theString.strip('say')
print theString.strip('say ') #say后面有空格
print theString.lstrip('say')
print theString.rstrip('say')
运行结果:

yes no

es no
yes no yaaaass
saaaay yes no

转载于:https://blog.51cto.com/martinlei/2054717

你可能感兴趣的文章
Amazon SNS Mobile Push Notifications
查看>>
c语言判断平年/闰年
查看>>
支持双启动的PC平台Chrome OS版本问世
查看>>
崛起中的九大HTML5开发工具
查看>>
linux下svn命令使用大全:二
查看>>
ARp欺骗
查看>>
myeclipse10.0优化
查看>>
LVM
查看>>
mysql数据的binlog处理方法
查看>>
Centos7搭建yum本地源
查看>>
我的友情链接
查看>>
mysql 主从分离 读写分离(mysql-proxy)
查看>>
linux笔记 1-11-系统日志之时间同步
查看>>
剑指,offer10
查看>>
FreeMarker Demo
查看>>
三级联动
查看>>
我的第一次
查看>>
引用的本质分析(四)
查看>>
SecureCRT的日志设置
查看>>
排序算法前言
查看>>