码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-03-07 23:19:27      阅读:282      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!