Open In App

Python-Quizzes | Python Dictionary Quiz | Question 17

Like Article
Like
Save
Share
Report

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


Last Updated : 17 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads