欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python中字典的方法update

程序员文章站 2022-06-01 13:27:47
...

使用场景:涉及两个字典的合并时
实例:

>>> D1 = {'one':1, 'two':2}
>>> D2 = {'three':3}
>>> D1.update(D2)
>>> D1
{'one': 1, 'two': 2, 'three': 3}
>>> D1 = {'one':1, 'two':2}
>>> D1.update(three=3)
>>> D1
{'one': 1, 'two': 2, 'three': 3}