Python-Quizzes | Python Dictionary Quiz | Question 9

Last Updated :
Discuss
Comments

Find the output of the following program:

Python
a = {'geeks' : 1, 'gfg' : 2} 
b = {'geeks' : 2, 'gfg' : 1} 
print (a == b) 

True

False

Error

None

Share your thoughts in the comments