Python MCQ Questions Set-11
Here is an interesting Python Multiple choice questions Quiz. Attempting this MCQ will help you to evaluate your knowledge and skills. 1. What will be the output of the following Python code? count={}count[(1,2,4)] = 5count[(4,2,1)] = 7count[(1,2)] = 6count[(4,2,1)] = 2 tot = 0 for i in count:tot=tot+count[i] print(len(count)+tot) a) 25b) 17c) 16d) Tuples can’t … Read more