shaoheshaohe 发表于 2020-5-25 17:05:56

Python 合并字典

给定一个字典,然后计算它们所有数字值的和。实例 1 : 使用 update() 方法,第二个参数合并第一个参数def Merge(dict1, dict2):   return(dict2.update(dict1))       # 两个字典dict1 = {'a': 10, 'b': 8} dict2 = {'d': 6, 'c': 4}   # 返回None print(Merge(dict1, dict2))   # dict2 合并了 dict1print(dict2)



shaoheshaohe 发表于 2020-5-25 17:06:07

https://www.runoob.com/python3/python-merging-two-dictionaries.html
页: [1]
查看完整版本: Python 合并字典