Olá 👋 Eu sou o Roni, um eterno aprendiz Pernambucano! Entusiasta de novas tecnologias e história de modo geral.
class Roni():
def __init__(self):
self.name = "Roni Maciel"
self.username = "ronierisonmaciel"
self.location = "Recife, Pernambuco"
self.twitter = "@ronimaciell"
self.web = "https://maciel.recife.br"
self.email = "ronierison.maciel@gmail.com"
self.hardskill = "Python, Java, JavaScript, Node, MySQL, AWS, Git, Linux"
def __str__(self):
return self.name
if __name__ == '__main__':
me = Roni()