python有幾種循環遍歷的方法?
1、for-in可以用來遍歷數組與字典。
words=['cat','window','defenestrate']
forwinwords:
print(w,len(w))
#使用數組訪問操作符,能夠迅速地生成數組的副本
forwinwords[:]:
iflen(w)>6:
words.insert(0,w)
#words->['defenestrate','cat','window','defenestrate']
2、如果希望使用數字序列進行遍歷,可以使用Python內置的range函數。
a=['Mary','had','a','little','lamb']
foriinrange(len(a)):
print(i,a[i])
以上就是python2種循環遍歷的方法,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。