类方法__repr __(静态类)

时间:2018-10-28 16:25:27

标签: python python-3.x

我想使用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

0 个答案:

没有答案