merging dictionaries in python code example
Example 1: python merge two dictionaries in a single expression
z = {**x, **y} #python 3.5 and above
z = x | y #python 3.9+ ONLY
def merge_two_dicts(x, y): # python 3.4 or lower
z = x.copy() # start with x's keys and values
z.update(y) # modifies z with y's keys and values & returns None
return z
Example 2: merge two dict python 3
z = {**x, **y}
Example 3: python merge dictionaries
dict1 = {'color': 'blue', 'shape': 'square'}
dict2 = {'color': 'red', 'edges': 4}
dict1.update(dict2) #if a key exists in both, it takes the value of the second dict
# dict1 = {'color': 'red', 'shape': 'square', 'edges': 4}
# dict2 is left unchanged