This program will simulate a small "database" of information about classes at a university. The information for each class will be stored in a dictionary, and all the dictionaries will be stored in a list. With this program, you will be able to:
+ Expand Code
# An empty list, when the program first
# starts.  As the user starts to add 
# classes, it will be filled with items --
# those items being dictionaries containing
# class information

classes = []

choice = None
while choice != "0":

    print(
    """
    Create Classes
...

        
Note that because of user input and random values, the output will look different each time you run the program.

Program output example:

+ Expand Output

    Create Classes
    
    0 - Quit
    1 - List All Classes
    2 - Add a Class
    3 - Display Class Information
    
Choice: 1

Classes:


    Create Classes
    
    0 - Quit
...
        
In at least 150 words, please address the following questions in memo.txt:
  1. How did the process of creating these programs go for you?
  2. What were your main challenges and how did you overcome them?
  3. What did you learn that may be of use as you move along in this class?