1. 程式人生 > >Python中字典(Dictionary) items()方法

Python中字典(Dictionary) items()方法

描述

Python 字典(Dictionary) items() 函式以列表返回可遍歷的(鍵, 值) 元組陣列

語法

items()方法語法:

dict.items()

引數

  • NA。

返回值

返回可遍歷的(鍵, 值) 元組陣列。

例項

dict = {'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www.taobao.com'}
print(dict.items())# 遍歷字典列表
for key,values in  dict.items():
    print(key,values)

以上例項輸出結果為:

dict_items([('taobao', 'www.taobao.com'), ('Runoob', 'www.runoob.com'), ('Google', 'www.google.com')])
taobao www.taobao.com
Runoob www.runoob.com
Google www.google.com