发布于 5年前
Python中如何合并两个字典(dict)?
使用 update
,例如:
In [1]: a = {}
In [2]: b = {"hello": "world"}
In [3]: a, b
Out[3]: ({}, {'hello': 'world'})
In [4]: a.update(b)
In [5]: a, b
Out[5]: ({'hello': 'world'}, {'hello': 'world'})
使用 update
,例如:
In [1]: a = {}
In [2]: b = {"hello": "world"}
In [3]: a, b
Out[3]: ({}, {'hello': 'world'})
In [4]: a.update(b)
In [5]: a, b
Out[5]: ({'hello': 'world'}, {'hello': 'world'})