merge two dicts python code example
Example 1: join two dictionaries python
z = {**x, **y}
Example 2: merge two dict python 3
z = {**x, **y}
Example 3: how to merge two dictionaries in python
>>> x = {'a': 1, 'b': 2}
>>> y = {'b': 10, 'c': 11}
>>> z = {**x, **y} #In Python 3.5 or greater only
>>> print(z)
{'a': 1, 'b': 10, 'c': 11}
Example 4: concatenate two dictionnaries python
d1.update(d2)
Example 5: concat dicts python
d1={1:2,3:4}; d2={5:6,7:9}; d3={10:8,13:22}
d4 = dict(d1, **d2); d4.update(d3)