how to join 2 dictionaries in python code example

Example 1: join two dictionaries python

z = {**x, **y}

Example 2: merge two dict python 3

z = {**x, **y}

Example 3: concatenate two dictionnaries python

d1.update(d2)

Example 4: python concatenate dictionaries

# list_of_dictionaries contains a generic number of dictionaries
# having the same type of keys (str, int etc.) and type of values
global_dict = {}

for single_dict in list_of_dictionaries:
    global_dict.update(single_dict)