Home /
Expert Answers /
Computer Science /
code-in-python-please-exercise-5-4-atm-case-study-in-python-simulate-an-atm-menu-system-with-depos-pa718
(Solved): code in python please Exercise 5.4 - ATM Case Study in python Simulate an ATM menu system with depos ...
code in python please
Exercise 5.4 - ATM Case Study in python Simulate an ATM menu system with deposit and withdraw capbility. Assume the current balance is $500 Print out the main menu, ask user for the choice, then perform the transactions depending on the use choice. Allow the user to perform multiple transactions. Sample output: Main menu 1: check balance 2: withdraw 3: deposit 4: exit Enter a choice: 1 Current balance: 500 Enter a choice: 3 Enter deposit amount: 50 Current balance: 550 Enter a choice: 2 Enter withdraw amount: 100 Current balance: 450 Enter a choice: 4