Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please create in python no import allowed create a function called combine_dict that will take in two dictionaries as input and return a new dictionary
Please create in python no import allowed
create a function called combine_dict that will take in two dictionaries as input and return a new dictionary with all the key:value pairs from the two dictionaries. If a dictionary shares a key then the value from the second dictionary will be appended to the list from the first dictionary. Here is an example what the function should do:
>>> d1 = {'r': [1, 4, 3], 'b': [5], 'c': [ 6, 9]} >>> d2 = {'r': [2], 'b': [8, 10, 0], 'd': [10, 11, 12]} >>> combine_dict(d1, d2) {'r': [1, 4, 3, 2], 'b': [5, 8, 10, 0], 'c': [ 6, 9], 'd': [10, 11, 12]}
>>> combine_dict(d2,d1)
{'r': [2,1, 4, 3], 'b': [ 8, 10, 0,5], 'c': [ 6, 9], 'd': [10, 11, 12]}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started