python combine 2 dicts 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}