當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python dict items()用法及代碼示例


字典Python中的數據是一個無序的數據值集合,用於存儲數據值(如Map),與其他僅將單個值作為元素的數據類型不同,Dictionary擁有 key:value對。

在Python字典中,items()方法用於返回帶有所有帶有值的字典鍵的列表。

用法: dictionary.items()

參數:此方法不帶參數。

返回:一個視圖對象,顯示給定詞典的(鍵,值)元組對的列表。

範例1:

# Python program to show working 
# of items() method in Dictionary 
  
# Dictionary with three items  
Dictionary1 = { 'A':'Geeks', 'B':4, 'C':'Geeks' } 
  
print("Dictionary items:") 
  
# Printing all the items of the Dictionary 
print(Dictionary1.items())

輸出:

Dictionary items:
dict_items([('C', 'Geeks'), ('B', 4), ('A', 'Geeks')])

這些項目在列表中的順序可能並不總是相同。

範例2:顯示修改字典後items()的工作。

# Python program to show working 
# of items() method in Dictionary 
  
# Dictionary with three items  
Dictionary1 = { 'A':'Geeks', 'B':4, 'C':'Geeks' } 
  
print("Original Dictionary items:") 
  
items = Dictionary1.items() 
  
# Printing all the items of the Dictionary 
print(items) 
  
# Delete an item from dictionary 
del[Dictionary1['C']] 
print('Updated Dictionary:') 
print(items)

輸出:

Original Dictionary items:
dict_items([('A', 'Geeks'), ('C', 'Geeks'), ('B', 4)])
Updated Dictionary:
dict_items([('A', 'Geeks'), ('B', 4)])

如果字典隨時更新,則更改將自動反映在視圖對象中。



相關用法


注:本文由純淨天空篩選整理自Akanksha_Rai大神的英文原創作品 Python Dictionary | items() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。