Question: Write Python program for the following question 2. (5 points) Write a function that takes two dictionaries and add the key:value pairs from the second
Write Python program for the following question

2. (5 points) Write a function that takes two dictionaries and add the key:value pairs from the second dictionary to the first. If a key already exists in the first dictionary, ignore it. Test your function with the following program. my_dict1 = {1: 12, 2: 14, 5: 13} my_dict2 = {1: 13, 4: 3, 10: 20} print(my_dict1) print(my_dict2) add_dict(my_dicti,my_dict2) print(my_dict1) You should get the following output {1: 12, 2: 14, 5: 13} {1: 13, 4: 3, 10: 20} {1: 12, 2: 14, 5: 13, 4: 3, 10: 20} Process finished with exit code o
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
