Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRiley Ittidecharchoti
3,195 Points__eq__ why do we need it?
If python can already do this, why do we need this dunder eq? Could someone explain please, thanks!
list1 = [2, 3]
list2 = [2, 3]
if list1 == list2:
print("eq")
else:
print("not eq")
eq
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsHey Riley Ittidecharchoti, great question!
The built-in types, such as list
, all have __eq__
defined. Any new class that is derived from the built-in types will inherit the __eq__
method.
If a new class is defined that does not inherit from a built-in type and it will be used in a ==
comparison statement, then it must have an __eq__
method defined or it can not be compared. In other words, the ==
operator calls the __eq__
method.
Post back if you need more help. Good luck!!!
Riley Ittidecharchoti
3,195 PointsRiley Ittidecharchoti
3,195 PointsThank you! I get it. Thanks for taking the time to reply. The same for the other dunder ones ( what should I refer to them as ) right?
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsCorrect! Each of the dunder or βspecial namedβ methods, have a one-to-one correspondence to using an operator on the object, the object being callable, using the object as hashable type in a dictionary key, etc. Basically a dunder method for every context an object might be used in.