在Python中,可以使用enumerate()函数来输出索引值。
enumerate()
lst = ['a', 'b', 'c', 'd', 'e'] for index, value in enumerate(lst): print(index, value)
输出:
0 a 1 b 2 c 3 d 4 e
在以上代码中,enumerate()函数将列表lst的每个元素与其对应的索引值一起返回。我们可以使用for循环来遍历这些索引值和元素,并将它们打印出来。
lst
for