Python中strip函数起什么作⽤?
参考链接:
strip是trim掉字符串两边的空格。
lstrip, trim掉左边的空格
rstrip, trim掉右边的空格
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')trim函数的作用是删除文本的什么空格
运⾏结果:
yes no
es no
yes no yaaaass
saaaay yes no

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。