#!/usr/local/bin/python3 class A(object): def __init__(self): self.a = 1 class B(A): def __init__(self): self._a = 9 #A.__init__(self) super().__init__() @property def a(self): return self._a print(B())