class Jag():
def __init__(self):
self.name = "Jagadananda Saint";
self.username = "jagwithyou";
self.location = "Odisha, India";
self.current_goal = "creating python placement series";
self.looking_for = "collaborating with you";
def __str__(self):
return self.name
if __name__ == '__main__':
me = jag()