📅  最后修改于: 2020-09-20 04:48:03             🧑  作者: Mango
如果键不在字典中,则update()
方法将元素添加到字典中。如果键在词典中,它将使用新值更新键。
update()
的语法为:
dict.update([other])
update()
方法采用字典或键/值对(通常为元组)的可迭代对象。
如果在不传递参数的情况下调用update()
,则字典保持不变。
update()
方法使用字典对象或键/值对的可迭代对象中的元素更新字典。
它不返回任何值(返回None
)。
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'}
d = {'x': 2}
d.update(y = 3, z = 0)
print(d)
输出
{'x': 2, 'y': 3, 'z': 0}