Python strip lstrip rstrip使用方法

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

注意:如果不传参数,那么是指去掉左右两边的空白字符,不仅仅是空格,还包括换行符(\n),水平制表(\t)等。

theString = '	\nsaaaay yes no yaaaass'#\n前面是tab键输入的空格,也可以用\t代替
print theString.strip()

 

你可能感兴趣的:(python)