enumerate()会将数组或列表组成一个索引序列,其返回值内包含两个变量的迭代器,第1个是序列号,第二个是数组、列表元素
list = ['a','b','c','d']
for i,j in enumerate(list):
print(i,j)
输出为
0 a
1 b
2 c
3 d
enumerate()会将数组或列表组成一个索引序列,其返回值内包含两个变量的迭代器,第1个是序列号,第二个是数组、列表元素
list = ['a','b','c','d']
for i,j in enumerate(list):
print(i,j)
输出为
0 a
1 b
2 c
3 d
本文标题:enumerate()索引序列
本文链接:https://www.haomeiwen.com/subject/itteextx.html
网友评论