Python - Multiplication across Like Keys Value list elements
Given two dictionaries with value lists, perform element wise like keys multiplication. Input : test_dict1 = {"Gfg" : [4, 6], "Best" : [8, 6], "is" : [9, 3]}, test_dict2 = {"Gfg": [8, 4], "Best" : [6, 3], "is" : [9, 8]} Output : {'Gfg': [32, 24], 'Best': [48, 18], 'is': [81, 24]} Explanation : 4 * 8