python中可以使用index()方法返回列表中指定元素的索引。
Pythonindex()方法检测字符串中是否包含子字符串str,如果指定beg(开始)和end(结束)范围,则检查是否包含在指定范围内,该方法与pythonfind()方法一样,只不过如果str不在string中会报一个异常。
直接使用index()仅可以返回首个指定元素的索引:
#!/usr/bin/python
list=[1,3,4,2,1,2,2]
str2=2
print(list.index(str2))
输出结果:
3
2、循环遍历列表并返回元素索引
defget_same_element_index(ob_list,word):
return[ifor(i,v)inenumerate(ob_list)ifv==word]
if__name__=="__main__":
ob_list=[1,3,4,2,1,2,2]
word=2
print("{0}在列表{1}中的索引:{2}".format(word,ob_list,get_same_element_index(ob_list,word)))
输出结果:
2在列表[1,3,4,2,1,2,2]中的索引:[3,5,6]
以上内容为大家介绍了python怎么返回列表元素索引?希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:瀚银百科。