You are going to write a program (In Python) called BankApp to simulate a banking application. The information needed for this project are stored in a text file. Those are: usernames, passwords, and balances. Your program should read username, passwords, and balances for each customer, and store them into three lists. userName (string), passWord(string), balances(float) The txt file with information is provided as UserInformtion.txt Example: This will demonstrate if file only contains information of 3 customers. You could add more users into the file. userName   passWord     Balance ======================== Mike          sorat1237#        350 Jane          para432@4       400 Steve         asora8731%     500   When a user runs your program, it should ask for the username and password first. Check if the user matches a customer in the bank with the information provided. Remember username and password should be case sensitive. After asking for the user name, and password display a menu with the following options and ask the user for input (Use a While Loop).   Type D to deposit money Type W to withdraw money Type B to display Balance Type C to change user, display user name Type A to add new client Type E to exit If the user types D (Deposit Function) Ask the user to enter the amount to deposit. Then call the Deposit Function, passing the deposit amount as a parameter. The function should update the Balance. Then display the new balance (this should happen by calling the ShowBalance function). Then display the menu again If the user types W (Withdraw Function) Ask the user to enter the amount he/she wants to withdraw. Before calling the withdraw function, make sure there is enough balance. Call the ShowBalance function before Withdraw function!! Then call the Withdraw Function, passing the withdraw amount as a parameter. The function should update the Balance. Display the new balance to the user. Then display the menu again If the user enters B (ShowBalance Function) Display the Balance. If the user enters C (ChangeUser Function) Ask for the user name and change to a different customer. If the user enters A (AddNewUser function) Ask for username, password, and balance. These information will be added to the appropriate lists which later on will be transfered to the UserInformation.txt If the user types any other option: Prompt the user that option is invalid If the user types E then Terminate the program and update the UserInformtion.txt with the correct updated balances. PS: You program must keep displaying the menu until the user types the option E, to exit the program.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
You are going to write a program (In Python) called BankApp to simulate a banking application.
The information needed for this project are stored in a text file. Those are:
usernames, passwords, and balances.
Your program should read username, passwords, and balances for each customer, and
store them into three lists.
userName (string), passWord(string), balances(float)
The txt file with information is provided as UserInformtion.txt
Example: This will demonstrate if file only contains information of 3 customers. You
could add more users into the file.
userName   passWord     Balance
========================
Mike          sorat1237#        350
Jane          para432@4       400
Steve         asora8731%     500
 
When a user runs your program, it should ask for the username and password
first. Check if the user matches a customer in the bank with the information
provided. Remember username and password should be case sensitive.
After asking for the user name, and password display a menu with the following
options and ask the user for input (Use a While Loop).
 
Type D to deposit money
Type W to withdraw money
Type B to display Balance
Type C to change user, display user name
Type A to add new client
Type E to exit
If the user types D
(Deposit Function) Ask the user to enter the amount to deposit.
Then call the Deposit Function, passing the deposit amount as a parameter. The
function should update the Balance.
Then display the new balance (this should happen by calling the ShowBalance
function).
Then display the menu again
If the user types W
(Withdraw Function) Ask the user to enter the amount he/she wants to withdraw.
Before calling the withdraw function, make sure there is enough balance. Call
the ShowBalance function before Withdraw function!!
Then call the Withdraw Function, passing the withdraw amount as a parameter.
The function should update the Balance.
Display the new balance to the user.
Then display the menu again
If the user enters B
(ShowBalance Function)
Display the Balance.
If the user enters C
(ChangeUser Function) Ask for the user name and change to a different
customer.
If the user enters A (AddNewUser function) Ask for username, password,
and balance. These information will be added to the appropriate lists which
later on will be transfered to the UserInformation.txt
If the user types any other option: Prompt the user that option is invalid
If the user types E then
Terminate the program and update the UserInformtion.txt with the correct
updated balances.
PS: You program must keep displaying the menu until the user types the option
E, to exit the program.
 
 
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

An error message popped up when I tried to run the code.

"deposit" is not defined

"withdraw" is not defined

*it was run on visual code

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Constants and Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education