class Test():
test1 = 1
def __init__(self):
self.test2 = 2
r = Test()
print r.__dict__
print getattr(r,'test1')
__dict__
辞書に test1 属性が表示されないのはなぜですか?
class Test():
test1 = 1
def __init__(self):
self.test2 = 2
r = Test()
print r.__dict__
print getattr(r,'test1')
__dict__
辞書に test1 属性が表示されないのはなぜですか?