如何删除角色' A'如果字符串以' A'?
开头,则从字符串的开头开始"AsomethingAsomething" output should be "somethingAsomething"
"somethingAsomething" output should be "somethingAsomething"
(使用Python 3.x)
答案 0 :(得分:2)
试试这个:
s = "AsomethingAsomethingAsomething"
<击> s[s.find('A')+1:]
击>
s.lstrip('A')
答案 1 :(得分:1)
结合一些逻辑和str
方法并切片:
if some_string.startswith('A'):
some_string = some_string[1:]
甚至更好,只需使用评论中提出的some_string = some_string.lstrip('A')
。
答案 2 :(得分:0)
使用lstrip
string = "AsomethingAsomethingAsomething"
string.lstrip('A')