dict_1 = { "apple": 3, "orange" : 6, "pineapple": 7, } dict_2 = { "banana": 2, "strawberry" : 4, "peach": 3, } dict_1 |= dict_2 print(dict_1)