1 Fork me on GitHub

Python常用数据结构-字典——2.5 字典方法 update()

字典方法 update()

update(dict)
使用来自 dict 的键/值对更新字典,覆盖原有的键和值。
入参:
  dc:字典对象,必传
返回:None


如果原有的键存在,则替换成新值;如果原有的键不存在,会补充到字典中。

例子:
dc = {"name": "Harry Potter", "age": 18}
dc.update({"age": 20, "hobby": "magic"})
print(dc)

返回

 

posted @ 2022-04-28 16:15  v_jjling  阅读(161)  评论(0编辑  收藏  举报
AmazingCounters.com