Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please typy in PYTHON!!! Thank you! 5. Create a function which concatenates two dictionaries. If the two dictio- naries have the same key then their
Please typy in PYTHON!!! Thank you!
5. Create a function which concatenates two dictionaries. If the two dictio- naries have the same key then their values should be added. Perform the following test cases: 1) if the two dictionaries are {"a": 1, "b": 2} and {"d": 4} then the func- tion should return {'a': 1, 'b': 2, 'd': 4} 2) if the two dictionaries are {"a": 1, "b": 2} and {"a":3, "d": 4} then the function should return {'a': 4, 'b': 2, 'd': 4} [1%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