Computer Science, asked by sohansharvin, 7 months ago

Predict the output of following code snippet

dict1={}

dict1[(1,5,6)]=10

dict1[(6,2,5)]=3

dict1[(1,2)]=2

sum=0

for i in dict1:

sum+=dict1[i]

print(sum)

print(dict1)​

Answers

Answered by sam44257
1

Answer:

please mark as brainliest

Explanation:

print is your answer

Similar questions