This is a basic question, might flag this as a duplicate. I am overloaded with information over the past few days studying Intermediate Python and I forgot to remember the special method of class to get the value of class.
class Example():
def __init__(self):
self.name = "Ninja Warrior"
# add special method to return self.name as a default value of Example()
print(Example().name)
# Ninja Warrior
print(Example()) # This is what I want to do
# Ninja Warrior