在 Python 中,可以通過使用 enumerate()
函數來輸出一個元素的索引值。
下面是一個示例代碼:
fruits = ['apple', 'banana', 'orange']
for index, fruit in enumerate(fruits):
print(index, fruit)
運行結果:
0 apple
1 banana
2 orange
在上面的示例中,enumerate()
函數將列表 fruits
中的每個元素與其對應的索引配對,并將它們作為元組返回。然后,我們使用 for
循環遍歷這些元組,并將索引值和元素值分別賦給 index
和 fruit
變量。最后,我們輸出索引值和元素值。