I have the following code:
class ObjectOne(object): @classmethod def print_class_name(cls): print cls.__class__.__name__ def print_class_nam
A classmethod receives the class as its argument. That's why you're calling it cls. Just do cls.__name__.
cls
cls.__name__