其他语言中,比如C#,我们通常遍历数组是的方法是:
for (int i = 0; i < list.Length; i++)
![](https://www.cnblogs.com/Images/OutliningIndicators/ExpandedBlockStart.gif)
![](https://www.cnblogs.com/Images/OutliningIndicators/ContractedBlock.gif)
{
//todo with list[i]
}
在Python中,我们习惯这样遍历:
for item in sequence:
process(item)
这样遍历取不到item的序号i,所有就有了下面的遍历方法:
for index in range(len(sequence)):
process(sequence[index])
其实,如果你了解内置的enumerate函数,还可以这样写:
for index, item in enumerate(sequence):
process(index, item)
Python 天天美味(21) - httplib,smtplib
Python 天天美味(22) - 拷贝对象(深拷贝deepcopy与浅拷贝copy)
Python 天天美味(23) - enumerate遍历数组
Python 天天美味(24) - 初始化多维数组
Python 天天美味(25) - 深入理解yield
...