class WhoAmI:
def __init__(self):
self.user = 'Darío Tapia'
self.current_education = "DuocUC (Programming Analyst)"
self.currently_learning = ["Python", "Linux"]
self.fun_fact = "I hate avocado..."
self.hobbies = [
'Music listener',
'Souls-like games',
'Manga reading',
'Studio Ghibli Movies'
]
def get_city(self) -> str:
return "Valparaíso 🌊, Chile"
def ambitions(self) -> list:
return [
"Complete my degree",
"Build 10+ impactful projects",
"Network with tech leaders",
"Win a hackathon 🏆",
"Contribute to open-source"
]




