前言:
现时兄弟们对“python __dict__重写”都比较关注,大家都想要学习一些“python __dict__重写”的相关文章。那么小编同时在网络上汇集了一些有关“python __dict__重写””的相关知识,希望你们能喜欢,小伙伴们快快来了解一下吧!题目:
用4种方法合并2个字典(dict)
视频教程:
Python入门100题之018:合并dict的4种方法
代码1:
d1 = {'a': 1, 'b': 2}d2 = {'b': 3, 'c': 4}for key in d2: d1[key] = d2[key]print(d1)
代码2:
d1 = {'a': 1, 'b': 2}d2 = {'b': 3, 'c': 4}# python3.9d1 = d1 | d2print(d1)
代码3:
d1 = {'a': 1, 'b': 2}d2 = {'b': 3, 'c': 4}# python3.5d1 = {**d1, **d2}print(d1)
代码4:
d1 = {'a': 1, 'b': 2}d2 = {'b': 3, 'c': 4}d1.update(d2)print(d1)
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #python __dict__重写