Here is the two simple ways to merge dictionaries in python.Using update methodBy using this method the second dictionary(new_adm) will be merged to the first one(default) and the update method will return None. Using dict constructorBy using this method