class Quark(object): def __init__(self, color, flavor): self.color = color self.flavor = flavor self.baryon_number = 1 / 3 def interact(self, other) -> None: self.color, other.color = other.color, self.color