![](https://user-images.githubusercontent.com/73097560/115834477-dbab4500-a447-11eb-908a-139a6edaec5c.gif)
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()