Hiee I'm Atri Mukherjee, a student from Mumbai, currently living in Chennai, India. I love cats and the colour grey.
class AtriMukherjee():
def __init__(self):
self.name = "Atri Mukherjee";
self.username = "rade-ark";
self.age = "19";
self.location = "Chennai, India";
self.email = "[email protected]";
self.instagram = "@awayshark";
def __str__(self):
return self.name
if __name__ == '__main__':
me = AtriMukherjee()