码迷,mamicode.com
首页 > 编程语言 > 详细

python中返回列表中特定指定元素的所有索引

时间:2021-04-29 12:10:59      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:int   count   基本   用法   font   元素   test   class   列表   

python中返回列表中指定元素的所有索引。

1、基本用法

>>> test1
[aa, bb, aa, cc, aa, cc, dd, xx, bb]
>>> test1.index("aa")
0

 

2、返回所有索引

>>> test1
[aa, bb, aa, cc, aa, cc, dd, xx, bb]
>>> test1.count("aa")
3
>>> tmp = -1
>>> for i in range(test1.count("aa")):
    tmp = test1.index("aa",tmp + 1,len(test1))
    print("aa",tmp)

    
aa 0
aa 2
aa 4

 

python中返回列表中特定指定元素的所有索引

标签:int   count   基本   用法   font   元素   test   class   列表   

原文地址:https://www.cnblogs.com/liujiaxin2018/p/14715865.html

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