╔══════════════════════════════════════════════════════════╗
║ ║
║ $ whoami ║
║ > Kathelyn Euzebio — Dev & Data Engineer ║
║ > Computer Engineering | Open to internships ║
║ ║
╚══════════════════════════════════════════════════════════╝
class KathelynEuzebio:
def __init__(self):
self.name = "Kathelyn Cristina Jacob Euzebio"
self.role = "Computer Engineering Student"
self.focus = ["Software Development", "Data Science"]
self.next_goal = "Information Security"
self.status = "🟢 Open to internships"
self.portfolio = "https://kathelyn.dev" # 👈 atualize com seu link
def say_hi(self):
print("Hey! I build stuff with data and code.")
print("First complete project: this portfolio 🚀")
me = KathelynEuzebio()
me.say_hi()