Python 字典 items() 方法

描述

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
相關文章
相關標籤/搜索