Python-Quizzes | Python Dictionary Quiz | Question 17
Question 17:Find the output of the following program:
d1 = { "john" : 40 , "peter" : 45 } d2 = { "john" : 466 , "peter" : 45 } print (d1 > d2) |
(A) True
(B) False
(C) Compilation Error
(D) TypeError
Answer: (D)
Explanation: The ‘>’ operator is not supported between instances of two dictionaries in Python 3.
Quiz of this Question
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.