zhangpengfei00 发表于 2015-4-26 08:05:28

Python天天美味(23)

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

for (int i = 0; i < list.Length; i++)
{
    //todo with list
}
在Python中,我们习惯这样遍历:

for item in sequence:
    process(item)
这样遍历取不到item的序号i,所有就有了下面的遍历方法:

for index in range(len(sequence)):
    process(sequence)
其实,如果你了解内置的enumerate函数,还可以这样写:

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

  Python天天美味系列(总)
  Python    天天美味(21) - httplib,smtplib
  Python    天天美味(22) - 拷贝对象(深拷贝deepcopy与浅拷贝copy)
  Python    天天美味(23) - enumerate遍历数组
  Python    天天美味(24) - 初始化多维数组
  Python    天天美味(25) - 深入理解yield
...
页: [1]
查看完整版本: Python天天美味(23)