Answered step by step
Verified Expert Solution
Question
1 Approved Answer
in PYTHON For a bank application, a program that can open a customer account will be written by determining the user name, surname, user number,
in PYTHON
For a bank application, a program that can open a customer account will be written by determining the user name, surname, user number, password and balance. Multiple users can be registered for a customer account with different user numbers. The customer's login to the system will be done with his user number and password. If the username or password is entered incorrectly three times, the account will be blocked. When entered correctly, the password can be changed upon request. When the user is logged into the system, if the user balance is over 10 TL(Turkish Liras) and the account of the other user in the same bank is not blocked, the transfer will be made by entering the user account number and amount. In addition, balance information query and exit from the program options will be added for the user. Write this application using the Python programming language. Note: Functions can be used in creating the program. Other than that, it is forbidden to add a library and to solve it, to use an object-oriented programming approach. Two-dimensional arrays / lists should be used to hold customer information. Notice : Program output sample, not only for this output, but the program that responds to all situations requested in the question should be created.-------- MAIN MENU ---------
- 1. Open New User Registration -
- Login User 2 -
Selection (1/2): 1
Username: Ahmet
User Surname: Tailor
User Number: 123456789
User Password: 123abc
User Balance: 1000
User Registration Successfully Done
-------- MAIN MENU ---------
- 1. Open New User Registration -
- Login User 2 -
Selection (1/2): 1
Username: Ali
User Surname: Ak
User Number: 130123456
User Password: abcdfg
User Balance: 10000
User Registration Successfully Done
-------- MAIN MENU ---------
- 1. Open New User Registration -
- Login User 2 -
Selection (1/2): 2
User Number: 130123456
User Password: abcdfg
User Login Successful
------- USER MENU ---------
- 1. Balance Information -
- 2. Make Money Transfer -
- 3. Change User Password-
- 4. Logout -
Selection (1/4): 1
Your balance: 10000 TL
Selection (1/4): 2
Enter the User Number to be Transferred: 123456789
Enter the Amount to be Transferred: 1500
Transfer Transaction Successful
Selection (1/4): 4
Logged Out
-------- MAIN MENU ---------
- 1. Open New User Registration -
- Login User 2 -
Selection (1/2): 2
User Number: 123456789
User Password: 123abc
User Login Successful
------- USER MENU ---------
- 1. Balance Information -
- 2. Make Money Transfer -
- 3. Change User Password-
- 4. Logout -
Selection (1/4): 1
Your balance: 2500 TL
Selection (1/4): 4
Logged Out
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started