您好,欢迎来到郫发教育。
搜索
您的当前位置:首页Pythonenumerate遍历数组应用

Pythonenumerate遍历数组应用

来源:郫发教育
 遍历数组的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)

Copyright © 2019- itpifa.com 版权所有

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务