Write a simple atm program in Python. Ask the user to enter their account number, and then print the beginning balance. (Just make one up) Then ask them if they want to make a withdrawal or deposit. Depending on their answer, call a function to perform the action they wish. Then print the new balance. They should be able to make as many transactions as they wish, so use iteration here.