Skip to content

Instantly share code, notes, and snippets.

View lshriver's full-sized avatar
🧭
navigating

Lauren Shriver lshriver

🧭
navigating
View GitHub Profile
@lshriver
lshriver / sefirot.py
Created October 6, 2024 16:29
Class practice
class Sephirah:
def __init__(self, name, type_1, type_2=None):
self.name = name
self.type_1 = type_1 #optional attribute to store position or other properties
self.type_2 = type_2
def __repr__(self):
return self.name
def initialize_sefirot():
class Bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'