当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。