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

以上就是Python strip lstrip rstrip使用方法。活得像自己就好了,何必在意那么多。更多关于Python strip lstrip rstrip使用方法请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
python中strip(),lstrip(),rstrip()函数的使用讲解

浅谈Python3中strip()、lstrip()、rstrip()用法详解

Python rstrip()方法实例详解

Python常用字符串替换函数strip、replace及sub用法示例

python strip() 函数和 split() 函数的详解及实例