Use the provided picture as the base program and then add the…

Question Answered step-by-step Use the provided picture as the base program and then add the… Use the provided picture as the base program and then add the following features to it:In a loop display a menu to the user that includes 4 possible options: Deposit, Withdrawal, Check Balance and Exit. Within the loop process the users request for Deposit (prompt for and read the amount to add to the balance), Withdrawal (prompt for and read amount plus ATM fee to subtract from balance), Check Balance (display account information) and Exit (terminate loop and print out a closing message to the user including name, account number and current balance). Format currency output to contain only two digits after the decimal point.Image transcription textaccountHolder = input(“Enter account holder’s name: “) accountNumber = input(“Enteraccount number: “) accountBalance = float (input (“Enter account balance: “))transactionFee = 1.50 amount_to_withdraw = float (input(“How much do you want to with… Show more… Show moreRequired: Source Code in Python and Pseudocode Computer Science Engineering & Technology Python Programming Share QuestionEmailCopy link Comments (0)