Python - Dictionary value lists lengths product
Given a dictionary with values as lists, compute the lengths of each list, and find product of all lengths. Input : test_dict = {'Gfg' : [6, 5, 9, 3], 'is' : [1, 3, 4], 'best' :[9, 16]} Output : 24 Explanation : 4 * 3 * 2 = 24. Length of lists are 4, 3, and 2. Input : test_dict = {'Gfg' : [6, 5, 3],