Python:获取列表中每个项目的索引,并带有重复项

时间:2017-08-18 02:48:51

标签: python python-3.x

如何获取列表中每个项目的索引,包括重复项?据我所知,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

0 个答案:

没有答案