class Equality: def __init__(self, lhs, rhs): self.lhs = lhs self.rhs = rhs def __str__(self): return f'{self.lhs} = {self.rhs}' def __repr__(self): return f'{self.lhs} = {self.rhs}' def __eq__(self, other): if isinstance(other, Equality): return self.lhs == other.lhs and self.rhs == other.rhs else: return False