我喜欢在类中定义嵌套属性,例如:
class MyClass(object):
def ___init__(self, a, b, c):
self.a = a
self.lowerlevel.b = b
self.lowerlevel.evenlower.c = c
但是当我尝试初始化类时,我得到了错误:
MyClass object has no attribute lowerlevel.
我该如何解决这个问题?