Question: USING PYTHON A2) Savings Account: Write a menu-driven program that allows the user to make transaction to a savings account. Assume that the account initially
USING PYTHON
A2) Savings Account:
Write a menu-driven program that allows the user to make transaction to a savings account. Assume that the account initially has a balance of \$1000. Each time you run the program, you need to provide the selected option and program will execute code and show appropriate result based on the selected option. Here is the example of menu and output options based on user selection.
Menu Options:
1. Make a Deposit
2. Make a Withdrawal
3. Obtain Balance
4. Quit
# Program Output depending on the user selection.
# If selection option is 1 then output should be: Select from the menu options: 1 Enter amount of deposit: 500 Deposit Processed. Current Balance is \$1,500.00
# If selection option is 2 then output should be: Select from the menu options: 2 Enter amount of withdrawal: 2000 Denied. Maximum withdrawal is $1,000.00 Current Balance is \$1,000.00
# If selection option is 2 then output should be: Select from the menu options: 2 Enter amount of withdrawal: 600 Withdrawal Processed. Current Balance is \$400.00
# If selection option is 3 then output should be: Select from the menu options: 3 Current Balance: \$1,000.00
# If selection option is 4 then output should be: Select from the menu options: 4 Good buy.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
