标签: python python-3.x oop
我只想对为什么使用对象打印__init__方法给出输出“无”的正确解释。
class cars: wheels = 4 def __init__(self): self.mil = 10 self.company = "BMW" c1 = cars() print(c1.__init__())
答案 0 :(得分:1)
__init__不会显式返回任何内容,因此它会隐式返回None,这就是您所看到的结果。
__init__
None