在 Python 2.7 中,我遇到了以下问题:我有一些我想清理的 url,特别是我想摆脱“http://”。
这有效:
>>> url = 'http://www.party.com'
>>> url.lstrip('http://')
'www.party.com'
但是为什么这不起作用?
>>> url = 'http://party.com'
>>> url.lstrip('http://')
'arty.com'
它从“party”中去掉了“p”。
谢谢您的帮助。