I love to code and I'm always learning new things. I'm pursuing a technical degree in Software Development at a public School in Buenos Aires, Argentina. I'm also working as Help Desk at IUARGSA.
#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareDeveloperStudent:
def __init__(self):
self.pronouns = "He" | "Him"
self.role = "Student"
self.language_spoken = ["es_ES", "en_US"]
self.code = ["Python", "JavaScript", "Java"]
ask_me_about = ["Games", "Tech", "Music", "Apps", "Anime"]
def say_hi(self):
print("Thanks for dropping by, hope you find some interesting.")
me = SoftwareDeveloperStudent()
me.say_hi()

