This program will simulate a small "database" of information about books in a library, bookstore, etc. The information for each book 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 
# books, it will be filled with items --
# those items being dictionaries containing
# book information

books = []

choice = None
while choice != "0":

    print(
    """
    Create Books
...

        
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 Books
    
    0 - Quit
    1 - List All Books
    2 - Add a Book
    3 - Delete a Book
    4 - Display Book Information
    
Choice: 1

Books:


    Create Books
    
    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?