class Harin():
def __init__(self):
self.name = "Harin V Chirappanath";
self.username = "ZeroDeath2";
self.location = "Kerala, India";
self.insta = "just_harin"
def __str__(self):
return self.name
if __name__ == '__main__':
me = Harin()