溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

?Python中遍歷列表的方法

發(fā)布時間:2020-10-28 11:10:45 來源:億速云 閱讀:156 作者:小新 欄目:編程語言

這篇文章主要介紹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è)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI