我想使用OOP Python创建一个完全静态的类,没有实例,并且没有@classmethod __repr__
打印时,得到的是类对象<class 'Example.Example'>
而不是我的__repr__
应该输出的内容。
示例代码:
class Example:
attribute = None
@classmethod
def __init__(cls, attribute):
cls.attribute = attribute
@classmethod
def __repr__(cls):
return cls.attribute