Computer Science, asked by pawankumar123440, 6 days ago

write a python program to find the product of values of given dictionary below Dict1={1:1,2:4,3:9,4:26,5:25}​

Answers

Answered by shrihankp
0

Answer:

dict1={1: 1, 2: 4, 3: 9, 4: 26, 5: 25}

for num in dict1.values():

prod *= num

print(prod)

#output: 23400

Similar questions