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


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


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

在Python字典中,update()方法使用另一個字典對象或可迭代的鍵/值對中的元素更新字典。

用法: dict.update([other])

參數:此方法將字典或鍵/值對(通常為元組)的可迭代對象作為參數。

返回:它不返回任何值,而是使用字典對象或鍵/值對的可迭代對象中的元素更新字典。

範例1:用另一本詞典更新。

# Python program to show working 
# of update() method in Dictionary 
  
# Dictionary with three items  
Dictionary1 = { 'A':'Geeks', 'B':'For', } 
Dictionary2 = { 'B':'Geeks' } 
  
# Dictionary before Updation 
print("Original Dictionary:") 
print(Dictionary1) 
  
# update the value of key 'B' 
Dictionary1.update(Dictionary2) 
print("Dictionary after updation:") 
print(Dictionary1)

輸出:

Original Dictionary:
{'A':'Geeks', 'B':'For'}

Dictionary after updation:
{'A':'Geeks', 'B':'Geeks'}


範例2:迭代更新。

# Python program to show working 
# of update() method in Dictionary 
  
# Dictionary with single item  
Dictionary1 = { 'A':'Geeks'} 
  
# Dictionary before Updation 
print("Original Dictionary:") 
print(Dictionary1) 
  
# update the Dictionary with iterable 
Dictionary1.update(B = 'For', C = 'Geeks') 
print("Dictionary after updation:") 
print(Dictionary1)

輸出:

Original Dictionary:
{'A':'Geeks'}

Dictionary after updation:
{'C':'Geeks', 'B':'For', 'A':'Geeks'}


相關用法


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