Heya! I'm João Pedro a.k.a 'Lushi', a student currently living in Marau/RS, Brasil. I'm a Computer Science Student at iMED, and i'm also learning programming through freelancing and small projects on the side.
class Lushi():
def __init__(self):
self.name = "João Pedro Mascarelo";
self.username = "lushisamurai";
self.location = "Marau-RS, Brasil";
self.twitter = "@lushisamurai";
self.instagram = "@lushisamurai";
self.discord = "Lushi#7750";
self.linkedin = "João Pedro Mascarelo";
def __str__(self):
return self.name
if __name__ == '__main__':
me = LushiSamurai()