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

查找列表中指定的所有元素的位置

时间:2017-01-15 10:37:55      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:art   class   code   问题   使用   main   bsp   start   print   

问题:查找列表中指定的值的所有元素

使用list的index方法

 1 def find_index(src, key):
 2     start_pos = 0
 3     for i in range(src.count(key)):
 4         if start_pos == 0:
 5             start_pos = src.index(key)
 6         else:
 7             start_pos = src.index(key, start_pos+1)
 8         print(start_pos)
 9 
10 if __name__ == __main__:
11     src = [1, 2, 3, 5, 2, 7, 2, 0, 3, 2]
12     key = -6
13     find_index(src, key)

 

查找列表中指定的所有元素的位置

标签:art   class   code   问题   使用   main   bsp   start   print   

原文地址:http://www.cnblogs.com/yangshl/p/6286693.html

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