python合并两个字典

By 刘志军 , 2020-06-07, 分类: qa

dict , python

python 中合并两个字典有3种方式

1、使用update方法

先用copy方法拷贝一个新对象,然后使用update方法合并另外一个字典

>>> x = {"a":1, "b":2}
>>> y = {"c":3, "d":4}
>>> z2 = x.copy()
>>> z2.update(y)
>>> z2
{'a': 1, 'b': 2, 'c': 3, 'd': 4}

2、使用**

python3.5以上版本,可使用 **

>>> x = {"a":1, "b":2}
>>> y = {"c":3, "d":4}
>>> z = {**x, **y}
>>> z
{'a': 1, 'b': 2, 'c': 3, 'd': 4}

3、使用 |

python3.9 可以使用 "|" 操作符合并两个字典

>>> z3 = z|y
{'a': 1, 'b': 2, 'c': 3, 'd': 4}

关注公众号「Python之禅」,回复「1024」免费获取Python资源

python之禅

猜你喜欢

2020-06-07
求求你,别再手工造假数据了,fake了解一下
2020-06-04
如何对python字典进行排序
2015-12-24
Python字典对象实现原理
2024-03-04
Python中的 if __name__ == '__main__' 是什么?
2024-03-04
用 Python 破解隔壁老王家的 Wi-Fi 密码,刺激!
2023-06-12
Python3.12新特性
2023-04-17
Python虚拟环境使用
2023-04-15
如何删除macOS系统默认的Python2.7并替换成最新版python3.11
2022-12-09
python 中return和yield有什么区别
2022-08-17
如何利用多态干掉 if else 语句