~upd~ | Python 3 Deep Dive Part 4 Oop
def get_balance(self): return self.__balance
class Square(Rectangle): def __init__(self, side_length): super().__init__(side_length, side_length) python 3 deep dive part 4 oop
def area(self): return self.width * self.height def get_balance(self): return self