Python 字典 items() 方法以列表形式(並不是直接的列表,若要返回列表值還需調用list函數)返回可遍歷的(鍵, 值) 元組數組。python
items() 方法語法:數組
D.items()
以列表形式返回可遍歷的(鍵, 值) 元組數組。函數
如下實例展現了 items() 方法的使用方法:google
# !/usr/bin/python3 D = {'Google': 'www.google.com', 'Runoob': 'www.runoob.com', 'taobao': 'www.taobao.com'} print("字典值 : %s" % D.items()) print("轉換爲列表 : %s" % list(D.items())) # 遍歷字典列表 for key, value in D.items(): print(key, value)
以上實例輸出結果爲:blog
字典值 : D_items([('Google', 'www.google.com'), ('taobao', 'www.taobao.com'), ('Runoob', 'www.runoob.com')]) 轉換爲列表 : [('Google', 'www.google.com'), ('taobao', 'www.taobao.com'), ('Runoob', 'www.runoob.com')] Google www.google.com taobao www.taobao.com Runoob www.runoob.com