在本教程中,我們將借助示例了解 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 clear()用法及代碼示例
- Python Dictionary setdefault()用法及代碼示例
- Python Dictionary pop()用法及代碼示例
- Python Dictionary popitem()用法及代碼示例
- Python Dictionary has_key()用法及代碼示例
- Python Dictionary get()用法及代碼示例
- Python Dictionary items()用法及代碼示例
- Python Dictionary copy()用法及代碼示例
- Python Dictionary keys()用法及代碼示例
- Python Dictionary values()用法及代碼示例
- Python Dictionary fromkeys()用法及代碼示例
- Python Decimal shift()用法及代碼示例
- Python Decimal next_plus()用法及代碼示例
- Python Decimal rotate()用法及代碼示例
- Python Decimal max_mag()用法及代碼示例
- Python Datetime.replace()用法及代碼示例
- Python DateTime轉integer用法及代碼示例
- Python Decimal as_integer_ratio()用法及代碼示例
- Python Decimal is_subnormal()用法及代碼示例
- Python DataFrame.to_excel()用法及代碼示例
注:本文由純淨天空篩選整理自 Python Dictionary update()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。