how to combine 2 dictionaries in python code example
Example 1: join two dictionaries python
z = {**x, **y}
Example 2: python merge two dictionaries in a single expression
z = {**x, **y}
z = x | y
def merge_two_dicts(x, y):
z = x.copy()
z.update(y)
return z
Example 3: merge two dict python 3
z = {**x, **y}
Example 4: python merge dictionaries
def merge_dictionaries(a, b):
return {**a, **b}
def merge_dictionaries(a, b):
c = a.copy()
c.update(b)
return c
a = { 'x': 1, 'y': 2}
b = { 'y': 3, 'z': 4}
print(merge_dictionaries(a, b))