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