在Python中,可以使用enumerate()
函數(shù)來輸出索引值。
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()
函數(shù)將列表lst
的每個元素與其對應(yīng)的索引值一起返回。我們可以使用for
循環(huán)來遍歷這些索引值和元素,并將它們打印出來。