📜  Python字典update()

📅  最后修改于: 2020-09-20 04:48:03             🧑  作者: Mango

update()方法使用另一个字典对象或可迭代的键/值对中的元素更新字典。

如果键不在字典中,则update()方法将元素添加到字典中。如果键在词典中,它将使用新值更新键。

update()的语法为:

dict.update([other])

update()参数

update()方法采用字典或键/值对(通常为元组)的可迭代对象。

如果在不传递参数的情况下调用update() ,则字典保持不变。

从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'}

示例2:通过元组时的update()

d = {'x': 2}

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

输出

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