Python 的 dict.items()
方法返回一個視圖對象,將字典的鍵/值對顯示為元組列表。
注意
視圖對象提供字典條目的動態視圖,這意味著當字典更改時,視圖對象會反映這些更改。
參數
無參數。
返回值
將字典的鍵/值對顯示為元組列表的視圖對象。
例子
基本用法
要返回顯示 scores
字典的鍵/值對的視圖對象:
scores = {'Andrew': 77, 'Matt': 80, 'Bob': 90}
scores.items()
dict_items([('Andrew', 77), ('Matt', 80), ('Bob', 90)])
動態行為
檢查返回的視圖對象是否反映了新添加的鍵'Ben'
:
scores = {'Andrew':77, 'Matt': 80, 'Bob': 90}
print("Original Items: ", scores.items())
scores.update({'Ben': 99})
print("Updated Items: ", scores.items())
Original Items: dict_items([('Andrew', 77), ('Matt', 80), ('Bob', 90)])
Updated Items: dict_items([('Andrew', 77), ('Matt', 80), ('Bob', 90), ('Ben', 99)])
我們可以看到返回的視圖對象現在包含新添加的鍵/值對 'Ben': 99
。
相關用法
- Python Dictionary items()用法及代碼示例
- Python Dictionary popitem方法用法及代碼示例
- Python Dictionary fromkeys方法用法及代碼示例
- Python Dictionary setdefault方法用法及代碼示例
- Python Dictionary update()用法及代碼示例
- Python Dictionary setdefault()用法及代碼示例
- Python Dictionary clear()用法及代碼示例
- Python Dictionary get方法用法及代碼示例
- Python Dictionary values方法用法及代碼示例
- Python Dictionary keys方法用法及代碼示例
- Python Dictionary pop()用法及代碼示例
- Python Dictionary popitem()用法及代碼示例
- Python Dictionary has_key()用法及代碼示例
- Python Dictionary get()用法及代碼示例
- Python Dictionary update方法用法及代碼示例
- Python Dictionary copy()用法及代碼示例
- Python Dictionary clear方法用法及代碼示例
- Python Dictionary copy方法用法及代碼示例
- Python Dictionary values()用法及代碼示例
- Python Dictionary keys()用法及代碼示例
- Python Dictionary pop方法用法及代碼示例
- Python Dictionary fromkeys()用法及代碼示例
- Python Django Distance用法及代碼示例
- Python Django Distance.unit_attname用法及代碼示例
- Python Django Distance.__getattr__用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python Dictionary | items method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。