当前位置:主页 > python教程 > Python查找list中的某个元素的所有的下标方法

Python如何查找list中的某个元素的所有的下标

发布:2021-05-21 09:25:21 137


给网友朋友们带来一篇Python相关的编程文章,网友马西华根据主题投稿了本篇教程内容,涉及到python、list元素下标、Python查找list中的某个元素的所有的下标方法相关内容,已被674网友关注,涉猎到的知识点内容可以在下方电子书获得。

Python查找list中的某个元素的所有的下标方法

如下所示:

#!/usr/bin/env python
#_*_ coding:utf-8 _*_
name = ['hello', 'world', 'a', 'b', 'c', 1, 2, 3, 'hello', 'world', 'a', 'b', 'c', 1, 2, 3]
first_pos = 0
for i in range(name.count(2)):
 new_list = name[first_pos:]
 next_pos = new_list.index(2) + 1
 print 'find ', first_pos + new_list.index(2)
 first_pos += next_pos

note:查找出列表中所有的某个元素

以上这篇Python 查找list中的某个元素的所有的下标方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持码农之家。


参考资料

相关文章

网友讨论