# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# β Hey, Iβm Brandon β a developer who loves building things β
# β that are smart, interactive, and fun to use. β
# β β
# β Iβm into exploring how software, AI, and design come together β
# β to create meaningful, creative solutions. β
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββclass Developer:
def __init__(self):
self.name = "Brandon Attram"
self.role = "Developer"
self.interests = ["Software", "AI", "Design"]
self.motivation = ["Curiosity", "Creativity", "Problem Solving"]
def intro(self):
print("Hey, Iβm Brandon β a developer who loves building things that are smart, interactive, and fun to use.")
print("Exploring how software, AI, and design connect to create meaningful, creative solutions.")
me = Developer()
me.intro()
# TODO: Keep learning, keep building, keep evolving π