首頁  >  文章  >  後端開發  >  在Python中遍歷列表的方法有哪些

在Python中遍歷列表的方法有哪些

尚
原創
2019-06-26 18:06:089109瀏覽

在Python中遍歷列表的方法有哪些

Python中遍歷列表有以下幾種方法:    

一、for循環遍歷

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循環遍歷:

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相關技術文章,請造訪Python教學欄位進行學習!

以上是在Python中遍歷列表的方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn