有人告诉我要编写一个程序来查找字符串中子字符串的最后位置。它似乎在输出错误信息,我不确定我哪里出错了。
任何人都可以帮忙吗?
def find_last(s, c):
last_position = -1
while s.find(c) != -1:
last_position = s.find(c)
s = s[last_position + len(c):]
return last_position
print(find_last('aaaa', 'a')) # returns 0, but the last position is 3
繁华开满天机
catspeake
慕尼黑5688855
相关分类