Python - Magic Methods and Operator Overloading
Find the error in this code:
class Person:
def __init__(self, age):
self.age = age
def __eq__(self, other):
return self.age = other.age