标签:while else 字符串 bre pen aaa == find 重复
list_all=[] oper_s="abcdaaaa" i_num=0 while(True): x=oper_s.find("a",i_num) print(x) if(not x==-1): i_num=x+1 list_all.append(x) else: break print(list_all)
标签:while else 字符串 bre pen aaa == find 重复
原文地址:https://www.cnblogs.com/sea-stream/p/10493245.html