如何获取列表中每个项目的索引,包括重复项?据我所知,python list.index只会给我一个重复项的第一个索引,就像这样。
registros = ["Celda", "Celda", "Test", "Celda", "Celda", "Celda"]
for item in registros:
index_found = registros.index(item)
print(str(index_found) + " " + dato)
输出:
0 Celda
0 Celda
2 Test
0 Celda
0 Celda
0 Celda
那么如何(尽可能简单)获得所需的输出?:
0 Celda
1 Celda
2 Test
3 Celda
4 Celda
5 Celda