$ cd $ cd cs21/inclass $ pwd /home/your_user_name/cs21/inclass $ mkdir w11-oop $ cd w11-oop $ pwd /home/your_user_name/cs21/inclass/w11-oop $ cp ~adanner/public/cs21/w11-oop/* .This week we are going to do some of the following as an intro to Object Oriented design. We are going to do some of the following together:
As you implement each method, test it by adding calls to main. Try calls that will test different method return values. For example, if a method returns True or False, try one call that should return True, another that should return False.
Parts of the program are complete, but other parts are left for you to do. You will complete admin functionality, and add regular user functionality. As you add things, keep in mind a user is running this program and likely wants some feedback on operations they perform on bank accounts.
The bank account data base is stored in a file, and read into a list of Account objects.
Complete the missing functionality that operates on this list of Account objects. Add and test in this order: