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


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


在本教程中,我們將借助示例了解 Python Dictionary update() 方法。

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

示例

marks = {'Physics':67, 'Maths':87}
internal_marks = {'Practical':48}

marks.update(internal_marks)


print(marks)

# Output: {'Physics': 67, 'Maths': 87, 'Practical': 48}

用法:

用法:

dict.update([other])

參數:

update() 方法采用 dictionary 或鍵/值對的可迭代對象(通常為 tuples )。

如果在不傳遞參數的情況下調用update(),則字典保持不變。

返回:

update() 方法使用來自字典對象或鍵/值對的可迭代對象的元素更新字典。

它不返回任何值(返回 None )。

示例 1:update() 的工作

d = {1: "one", 2: "three"}
d1 = {2: "two"}

# updates the value of key 2
d.update(d1)

print(d)

d1 = {3: "three"}

# adds element with key 3
d.update(d1)

print(d)

輸出

{1: 'one', 2: 'two'}
{1: 'one', 2: 'two', 3: 'three'}

注意: 這update()如果鍵不在字典中,則方法將元素添加到字典中。如果鍵在字典中,它將使用新值更新鍵。

示例 2:update() 傳遞元組時

d = {'x': 2}

d.update(y = 3, z = 0)

print(d)

輸出

{'x': 2, 'y': 3, 'z': 0}

相關用法


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