I'd like to create a generalized __eq__()
method for the following Class. Basically I'd like to be able to add another property (nick
) without having to change __eq__()
I imagine I can do this somehow by iterating over dir()
but I wonder if there is a way to create a comprehension that just delivers the properties.
class Person:
def __init__(self, first, last):
self.first=first
self.last=last
@property
def first(self):
assert(self._first != None)
return self._first
@first.setter
def first(self,fn):
assert(isinstance(fn,str))
self._first=fn
@property
def last(self):
assert(self._last != None)
return self._last
@last.setter
def last(self,ln):
assert(isinstance(ln,str))
self._last=ln
@property
def full(self):
return f'{self.first} {self.last}'
def __eq__(self, other):
return self.first==other.first and self.last==other.last
p = Person('Raymond', 'Salemi')
p2= Person('Ray', 'Salemi')