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

返回上一级

Python3 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.