程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python字典(dict )的幾種遍歷方式

編輯:Python

1.使用 for key in dict 遍歷字典
可以使用for key in dict遍歷字典中所有的鍵
x = {'a': 'A', 'b': 'B'} for key in x: print(key) # 輸出結果 a b
2.使用 for key in dict.keys () 遍歷字典的鍵
字典提供了 keys () 方法返回字典中所有的鍵
# keys book = { 'title': 'Python', 'author': '-----', 'press': '人生苦短,我用python' } for key in book.keys(): print(key) # 輸出結果 title author press
3.使用 for item in dict.items () 遍歷字典的鍵值對
字典提供了 items () 方法返回字典中所有的鍵值對 item
鍵值對 item 是一個元組(第 0 項是鍵、第 1 項是值)
x = {'a': 'A', 'b': 'B'} for item in x.items(): key = item[0] value = item[1] print('%s %s:%s' % (item, key, value)) # 輸出結果 ('a', 'A') a:A ('b', 'B') b:B
4.使用 for key,value in dict.items () 遍歷字典的鍵值對
元組在 = 賦值運算符右邊的時候,可以省去括號
item = (1, 2) a, b = item print(a, b) # 輸出結果 1 2
例:
x = {'a': 'A', 'b': 'B'} for key, value in x.items(): print('%s:%s' % (key, value)) # 輸出結果 a:A b:B        5.使用 for values in dict.values () 遍歷字典的值
字典提供了 values () 方法返回字典中所有的值
values book = { 'title': 'Python', 'author': '-----', 'press': '人生苦短,珍惜身邊人' } for value in book.values(): print(value) # 輸出結果 Python ----- 人生苦短,珍惜身邊人


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved