Computer Science - Object-Oriented Programming - Classes and objects - Complete the Class
Fill in missing class code. P1: 'BankAccount class' → class BankAccount: def __init__(self, owner, balance=0): self.___ = owner [owner]; self.balance = balance; def deposit(self, amount): self.balance ___ amount [+=]; def withdraw(self, amount): if amount <= self.___: [balance] self.balance -= amoun