python中enumerate函数用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中enumerate函数用法相关的知识,希望对你有一定的参考价值。
在Python中,我们习惯这样遍历:
for item in sequence:
print(item)
这样遍历取不到item的序号i,所有就有了下面的遍历方法:
for index in range(len(sequence)):
print(sequence[index])
其实,如果你了解内置的enumerate函数,还可以这样写:
for index, item in enumerate(sequence):
print(index, item)
以上是关于python中enumerate函数用法的主要内容,如果未能解决你的问题,请参考以下文章