Python基础之enumerate枚举
Posted _杨魏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础之enumerate枚举相关的知识,希望对你有一定的参考价值。
枚举,对于一个可迭代的(iterable)/可遍历的对象(如列表,字符串),enumerate将其组成一个索引序列,利用它可以同时获得索引和值。
1. 第一种类型
lst = ["a", "b", "c", "d"]
for i in enumerate(lst):
print(i)
执行结果为:
(0, ‘a‘)
(1, ‘b‘)
(2, ‘c‘)
(3, ‘d‘)
2. 改变enumerate索引起始
lst = ["a", "b", "c", "d"]
for index, name in enumerate(lst, 1):
print(index, name)
执行结果为:
1 a
2 b
3 c
4 d
3. 改变enumerate索引起始(二)
lst = ["a", "b", "c", "d"]
for index, name in enumerate(lst, 100):
print(index, name)
执行结果为:
100 a
101 b
102 c
103 d
</font>
以上是关于Python基础之enumerate枚举的主要内容,如果未能解决你的问题,请参考以下文章