my_dict = {"existing_key": "existing_value"} new_dict = {"key1": "value1"} my_dict.update(new_dict) print(my_dict)