Computer Science, asked by devichatterjee1710, 11 hours ago

Write a python program to print sum of even elements of a python dictionary.​

Answers

Answered by samarthkrv
0

Answer:

def sumEven(entry):

   count1=0

   for i in entry.values():

       a = i

       if a % 2 == 0:

           count1 += a

   return count1

Explanation:

Similar questions