Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please typy in PYTHON!!! Thank you! 1. Given two dictionaries, d1 and d2, create a new dictionary with the following property: for each entry a:b
Please typy in PYTHON!!! Thank you!
1. Given two dictionaries, d1 and d2, create a new dictionary with the following property: for each entry a:b in d1, if there is an entry b:c in d2, then the entry a:c should be added to the new dictionary. Perform the following test case: when d1 is {2:3, 8:19, 6:4, 5:3} and d2 is {2:5, 4: 3, 3:9} your code should produce the dictionary {2:9, 6:3, 5:9}. [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