Menu

[Solved]-Python Coding Assignment Please Include Comments Write Program Simulates Automatic Teller Q37273243

python coding assignment. please includecomments.

You will write a program that simulates an Automatic TellerMachine (ATM). Each user will have access to only a checkingaccount. Design your interface to be similar to what you see onyour local ATM.

  1. The purpose of this assignment is to test your object-orienteddesign abilities.
  • You will need write multiple Python classes to solvethis problem.
  • Remember, you will use the basic principles of constructingclasses as discussed in class. Figure out yournouns, verbs, and theproperties of your problem.
  1. Since debit card swiping is not possible here, instead ask theuser of your program for user ID and a PIN. The user ID will beused to look up the info for the user’s accounts (including the PINto see if it matches what the user types in).
  2. You can program some fake accounts and holders directly intoyour program, with starting balances, i.e. “Joe Smith” has user idjsmith and a balance of 1350 US dollars. You can program in anynumber of users you need. Hint: A dictionary is great forthis.
  3. The user should able to check the balance of, withdraw from, ordeposit into their checking account. You can add other actions(transfer between accounts) or accounts (savings, another checking)of your own, as well in addition to the require ones.
  4. You should have a main() function that uses any classes youwrote in some sort of interactive loop.

Expert Answer


Answer to python coding assignment. please include comments. You will write a program that simulates an Automatic Teller Machine (… . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *