Hello I'm yuri, While studing to be a FrontEnd developer, fall in love with Python.
Solid fundations of HTML, CSS and Python.
Currently practicing skills in Data-Science and Machine-Learning.
class YuriBettini():
def __init__(self):
self.name = "Yuri Bettini";
self.username = "Neosyuri";
self.location = "Canary Islands, Spain";
def __str__(self):
return self.name
if __name__ == '__main__':
me = YuriBettini()