Run
dict1 = { "key1": 10, "key2": 20, "key3": 30} dict2 = { "key5": 50, "key2": 2000, "key4": 40} dict1.update(dict2) print(dict1)
Output