this site is under construction_
a glimpse of what's to come...
class Trinity:
"""Three persons, one shared nature"""
def __init__(self):
# Three distinct persons
self.father = Person("Father")
self.son = Person("Son")
self.holy_spirit = Person("Holy Spirit")
# But they share one divine nature
# Like three instances sharing the same class definition
self.persons = [self.father, self.son, self.holy_spirit]
self.divine_nature = type(self) # One essence