为了账号安全,请及时绑定邮箱和手机立即绑定

python lstrip 切割错误问题

python lstrip 切割错误问题

守着星空守着你 2018-08-18 15:38:01
问题描述python3环境中。使用strip() 方法遇到的问题为什么会切割错误>>> s = "http://img.17dm.com/juren/manhua/1/1.jpg">>> s.lstrip("http://img.17dm.com/juren/manhua/")''>>> s.lstrip("http://img.17dm.com/juren/")'anhua/1/1.jpg'>>> s.lstrip("http://img.17dm.com/")'juren/manhua/1/1.jpg'>>> s.lstrip("http://img.17dm.com/").lstrip("juren/manhua")'1/1.jpg'
查看完整描述

1 回答

?
长风秋雁

TA贡献1757条经验 获得超7个赞

lstrip用法如下:str. lstrip([chars])
lstrip会删除你后面出现的所有可能的字符串,知道字符串不存在那个列表里。

比方说,str.lstrip('say')
str依次被去除首尾在['s','a','y']数组内的字符,直到字符在不数组内

下面是具体的样例:

>>> '   spacious   '.lstrip()'spacious   '>>> "AABAA".lstrip("A")'BAA'>>> "ABBA".lstrip("AB") # both AB and BA are stripped''>>> "ABCABBA".rstrip("AB")'ABC'>>> "ABCABBA".lstrip("AB")'CABBA'


查看完整回答
反对 回复 2018-08-19
  • 1 回答
  • 0 关注
  • 884 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信