Question: PLEASE USE PYTHON Implement a class named BankAccount. Every bank account has a starting balance of $0.00. The class should implement methods to accept deposits
PLEASE USE PYTHON
Implement a class named BankAccount. Every bank account has a starting balance of $0.00. The class should implement methods to accept deposits and make withdrawals, but an exception should be raised if a withdrawal is attempted for more money than is currently in the account.
__init__(self) Sets the balance to 0.
deposit(self, amount) Deposits money. Raises an exception if amount is less than zero.
widthdraw(self, amount) Withdraws money. Raises an exception if the account is overdrawn
balance(self) Returns the amount of money in the account.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
