class A(): atr1 = 5 def __init__(self): self.atr2=6
print A.attr1 a=A() print a.attr2 print a.attr1 print A.attr2 # ERROR!