class BankAccount: def __init__(self, name, account_type): self.name = name self.accountType = account_type self.balance = 0 def withdraw(self, amount): self.balance -= amount def deposit(self, amount): self.balance += amount # Create two different objects from the class # Print an object attribute # Call an object method