python 使用enumerate()函数详解
凌冰_ 人气:0一、enumerate() 函数简介
enumerate()是python的内置函数,将一个可遍历iterable数据对象(如list列表、tuple元组或str字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在for循环当中。
函数返回一个enumerate对象,是一个可迭代对象。具体元素值可通过遍历取出。
函数语法为:
语法: enumerate(sequence, [start=0])
参数
sequence -- 一个序列、迭代器或其他支持迭代对象。
start -- 下标起始位置。
返回值
返回 enumerate(枚举) 对象。
函数参数有:
- sequence是一个可迭代对象
- start是一个可选参数,表示索引从几开始计数
二、使用enumerate()函数
(1)使用for循环
1、迭代列表时如何访问列表下标索引 ll=[22, 36, 54, 41, 19, 62, 14, 92, 17, 67] for i in range(len(ll)): print(i, "=", ll[i])
(2)使用enumerate()
# 优雅版: for index,item in enumerate(ll): print(index, "=",item)
此外,enumerate()函数还有第二个参数,用于指定索引的起始值
# 优雅版: for index,item in enumerate(ll,10): print(index, "=",item)
加载全部内容