def __init__(self, name, pin, balance=0.0): """Same attributes as SavingsAccount, but with a counter for withdrawals.""" SavingsAccount.__init__(self, name, pin, balance) self.counter = 0
def __init__(self, name, pin, balance=0.0): SavingsAccount.__init__(self, name, pin, balance) self.counter = 0