您好,登錄后才能下訂單哦!
這篇文章主要介紹Python中遍歷列表的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
Python中遍歷列表有以下幾種方法:
一、for循環(huán)遍歷
lists = ["m1", 1900, "m2", 2000] for item in lists: print(item)
lists = ["m1", 1900, "m2", 2000] for item in lists: item = 0; print(lists)
運行結果:
['m1', 1900, 'm2', 2000]
二、while循環(huán)遍歷:
lists = ["m1", 1900, "m2", 2000] count = 0 while count < len(lists): print(lists[count]) count = count + 1
三、索引遍歷:
for index in range(len(lists)): print(lists[index])
四、使用iter()
for val in iter(lists): print(val)
五、enumerate遍歷方法
for i, val in enumerate(lists): print(i, val)
運行結果:
0 m1 1 1900 2 m2 3 2000
當從非0下標開始遍歷元素的時候可以用如下方法
for i, el in enumerate(lists, 1): print(i, el)
運行結果:
1 m1 2 1900 3 m2 4 2000
以上是Python中遍歷列表的方法的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。