9 lines
249 B
Python
9 lines
249 B
Python
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
|