enumerate

Posted pjishu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了enumerate相关的知识,希望对你有一定的参考价值。

>>>seasons = [Spring, Summer, Fall, Winter]

>>> list(enumerate(seasons))  # 配个下标形成对儿,默认从0开始

[(0, Spring), (1, Summer), (2, Fall), (3, Winter)]

>>> list(enumerate(seasons, start=1)) # 下标从 1 开始

[(1, Spring), (2, Summer), (3, Fall), (4, Winter)]

以上是关于enumerate的主要内容,如果未能解决你的问题,请参考以下文章

Python中enumerate用法详解

python中enumerate()的用法详解转摘

python之enumerate

python之enumerate