What is the output for the code below?
numberGames = {}
numberGames[(1,2,4)] = 8
numberGames[(4,2,1)] = 10
numberGames[(1,2)] = 12
sum = 0
for k in numberGames:
sum += numberGames[k]
print(len(numberGames) + sum)
A. 8
B. 12
C. 24
D. 30
E. 33
siddhartharao77:
33.
Answers
Answered by
2
the answer of the question is 8
Similar questions