您的当前位置:首页Pythonenumerate遍历数组应用

Pythonenumerate遍历数组应用

2020-11-27 来源:小侦探旅游网
遍历数组的python代码

其他语言中,比如C#,我们通常遍历数组是的方法是:


Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->for (int i = 0; i < list.Length; i++)
{
//todo with list[i]
}


在Python中,我们习惯这样遍历:


Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->for item in sequence:
process(item)


这样遍历取不到item的序号i,所有就有了下面的遍历方法:


Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->for index in range(len(sequence)):
process(sequence[index])


其实,如果你了解内置的enumerate函数,还可以这样写:


Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->for index, item in enumerate(sequence):
process(index, item)

显示全文