python enumerate用法总结

描述
enumerate() 函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中.

语法
以下是 enumerate() 方法的语法:

enumerate(sequence, [start=0])

参数
sequence -- 一个序列、迭代器或其他支持迭代对象。
start -- 下标起始位置。


返回值
返回 enumerate(枚举) 对象

 

注:

  • enumerate()是python的内置函数
  • enumerate在字典上是枚举、列举的意思
  • 对于一个可迭代的(iterable)/可遍历的对象(如列表、字符串),enumerate将其组成一个索引序列,利用它可以同时获得索引和值

l = ['a','b','c','d']

for i,j in enumerate(l):
print(i,j)

0 a
1 b
2 c
3 d

  • enumerate还可以接收第二个参数,用于指定索引起始值

for i,j in enumerate(l,1):
print(i,j)

1 a
2 b
3 c
4 d

 

上一篇:Python学习笔记之4.10 - 序列上索引值迭代 》》》enumerate() 函数 》》》待续


下一篇:python枚举函数----enumerate() 对可迭代对象进行迭代枚举