Python 字典 ( Dictionary ) update() 方法
Python 字典 ( Dictionary ) 对象的 update() 函数把字典 dict2 的键/值对更新到 dict 里
语法
dict.update(dict2)
参数
参数 | 说明 |
---|---|
dict2 | 添加到指定字典 dict 里的字典 |
返回值
无
范例
下面的代码使用字典 people_other 更新字典 people 里的值
>>> people = {"name":"Li Bai","age":28,"city":"PEK"} >>> people_other = {'school':'Tsinghua','city':'Beijing'} >>> people.update(people_other) >>> people {'city': 'Beijing', 'age': 28, 'name': 'Li Bai', 'school': 'Tsinghua'}