class A():
z = 'z it is'
def __init__(self):
self.a = 'a it is'
class B(A):
def __init__(self):
self.b = 'b it is'
b = B()
print b.z # z it is
print b.a # AttributeError: B instance has no attribute 'a'
b
B
クラスから継承されたクラスのインスタンスですA
。親クラスの属性にアクセスできることを意味しませんか?