Question: write a code using python Bank Account: Create a program that acts as a bank account. The account has some data: The account holder name

write a code using python

Bank Account:

Create a program that acts as a bank account. The account has some data:

The account holder name

The account number

The current balance of the account

You can do three things with the account:

withdraw money

add money into the account

print out the data of the account

you have to create a class that contains four methods:

The first method to collect the account data (you have to ask the user to enter her/his name, account number, and initial balance and send the information to the method)

deposit method to add money into the account(you have to ask the user to enter the deposit)

withdraw method to remove money from the account (Note: but first you have to check if the money in the account less than the withdraw amount, you have to print to the user an error message)

dump method to print out the data of the account

after coding the class, you have to create an object of it.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!