Question: undefined 3. Filename: assign2-7.py Write a Python program to combine two dictionaries adding values for common keys. You are not allowed to use the collections
undefined
3. Filename: assign2-7.py Write a Python program to combine two dictionaries adding values for common keys. You are not allowed to use the collections module. dicti = { "a":100, "b":2, "C":25, "d":9} dict2 = { "a":200, "e":2, "f":25,"d":9} H:\>python C:\Users aslsabbaghpourhokma\Documents\IT2431\Module2\assign2-7.py {'a': 300, 'b': 2, 'c': 25, 'd': 18, 'e': 2, 'f': 25}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
