enumerate() 函数用于同时遍历索引和元素,常用于循环中。这个函数返回一个包含索引和元素的元组,可以通过解包的方式获取它们。
enumerate(iterable, start=0)
.
示例说明:
# 示例列表
fruits = ['apple', 'banana', 'orange', 'grape']
# 使用 enumerate 遍历列表的索引和元素
for index, fruit in enumerate(fruits):
print(f"Index: {index}, Fruit: {fruit}")
输出:
Index: 0, Fruit: apple
Index: 1, Fruit: banana
Index: 2, Fruit: orange
Index: 3, Fruit: grape
在上面的示例中,enumerate(fruits) 返回一个可迭代对象,每次迭代都产生包含索引和元素的元组。
我们使用 for 循环和解包操作获取这两个值,然后进行打印。