for item in sequence:650)this.width=650;"src="https://www.cnblogs.com"/>

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函数用法的主要内容,如果未能解决你的问题,请参考以下文章

python中enumerate函数用法

Python中enumerate函数用法详解

python中enumerate函数的用法

Python内建函数enumerate()用法及在for循环应用

python 中的enumerate()函数的用法

python中enumerate()函数的用法