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(‘a‘)): new_list = name[first_pos:] next_pos = new_list.index(2) + 1 print(‘find ‘, first_pos + new_list.index(‘a‘)) first_pos += next_pos # 运行结果: # find 2 # find 10
摘自:Python 查找list中的某个元素的所有的下标方法
原文:https://www.cnblogs.com/picassooo/p/13550975.html