获取字符串中重复字符的索引

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)

猜你喜欢

转载自www.cnblogs.com/sea-stream/p/10493245.html