Python - Class Methods and Static Methods
What will be the output of this code?
class Example:
@classmethod
def show(cls):
return cls.__name__
print(Example.show())