update()方法向字典插入指定的項(xiàng)目。這個(gè)指定項(xiàng)目可以是字典或可迭代對(duì)象。
如果鍵不在字典中,則update()方法將元素添加到字典中。如果鍵在字典中,它將使用新值更新鍵。
update()的語(yǔ)法為:
dict.update([other])
update()方法采用字典或鍵/值對(duì)(通常為元組)的可迭代對(duì)象 。
如果在不傳遞參數(shù)的情況下調(diào)用update(),則字典保持不變。
update()方法使用字典對(duì)象或鍵/值對(duì)的可迭代對(duì)象中的元素更新字典。
它不返回任何值(返回None)。
d = {1: "one", 2: "three"} d1 = {2: "two"} # 更新key=2的值 d.update(d1) print(d) d1 = {3: "three"} # 使用鍵3添加元素 d.update(d1) print(d)
運(yùn)行該程序時(shí),輸出為:
{1: 'one', 2: 'two'} {1: 'one', 2: 'two', 3: 'three'}
d = {'x': 2} d.update(y = 3, z = 0) print(d)
運(yùn)行該程序時(shí),輸出為:
{'x': 2, 'y': 3, 'z': 0}