python strip_Python str.strip()函数

下面的英文说明是官方给出:

string.strip(s[, chars])

Return a copy of the string with leadingand trailing characters removed.If chars is omitted orNone, whitespace characters are removed. If given and not None, chars must be astring; the characters in the string will be stripped from the both ends of thestring this method is called on.

如果chars被忽略或者是None,空白字符串被移除。如果chars不是None并存在,在字符串的头尾的chars都将被移除。

Changed in version 2.2.3: The charsparameter was added. The chars parameter cannot be passed in earlier 2.2versions.

下面例子中字符以tab抬头,以空格结尾。

line=‘ hello happybks! ‘

print ‘*‘+line.strip()+‘*‘

print ‘*‘+line.strip(‘ ‘)+‘*‘

print ‘*‘+line.strip(‘ ‘)+‘*‘

print ‘*‘+line.strip(‘h‘)+‘*‘

输出结果如下:

*hello happybks!*

*hello happybks!*

*hello happybks!*

* hello happybks! *

可以发现不传参数,则会把字符串开头和结尾的空格、tab全部删除,中间的空格和tab不会

传空格或者tab参数,子串传仍然会把字符串开头和结尾的无论空格还是tab都一并删除

当传入的参数是其他参数时,字符串开头结尾不是该参数字符串,则没有任何效果

但是如果字符串的开头和结尾是其他字符串,并且传入的参数也是这个字符串,那么会将字符串开头和结尾的参数串全部清掉,无论有多少个。但是区分大小写。

例如,下面的例子:

line2=‘haaaaahhaaaaaaahHhhh‘

print ‘*‘+line2.strip(‘h‘)+‘*‘

结果输出:

*aaaaahhaaaaaaahH*

原文地址:http://90sirdb.blog.51cto.com/8713279/1812431

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值