enumerate即枚举、列举,对于一个iterable或者循环,enumerate将可遍历的对象(如列表、字符串等)组成一个索引序列,利用它可以同时获得索引和值。
如:
list = ["hello", "world", "hello", "python"]
for index, content in enumerate(list):
print(index, content)
输出如下结果:
0 hello
1 world
2 hello
3 python
enumerate还可以添加参数来指定索引起始值:
list = ["hello", "world", "hello", "python"]
for index, content in enumerate(list,1):
print(index, content)
输出如下结果:
1 hello
2 world
3 hello
4 python