Tech Student | Systems Analysis and Development at FGV
class RayTrin:
def __init__(self):
self.name = "Rayssa"
self.background = "Ex-student of Law"
self.current_focus = ["Python", "SQL", "Data Engineering", "MongoDB", "APIs", "Data Pipelines"]
self.learning_path = "Studying Systems Analysis and Development at FGV"
self.why_tech = (
"I was looking for more freedom, creativity, and the ability to build things that truly matter.")
def __str__(self):
return f"{self.name} is learning to code and building her dream life!"
def say_hi(self):
return "If you want to say hi, I’ll be happy to connect! :)"
ray = RayTrin()
print(ray)
print(ray.say_hi())