Currently we interact with products and orders by editing objects.py. It would be nice to display a menu on the command line that allows us to interact with products and orders. Something like:
Welcome to Nicole's shop!
Please select an option from the list below:
1. Create a new product
2. Show all products
3. Purchase a product
4. Display all orders
5. Quit
>
When we type a number from 1 to 4, we select the appropriate option. This would display a new prompt with instructions for completing that action. When the action is complete, we would return to the main menu.
Currently we interact with products and orders by editing
objects.py
. It would be nice to display a menu on the command line that allows us to interact with products and orders. Something like:When we type a number from 1 to 4, we select the appropriate option. This would display a new prompt with instructions for completing that action. When the action is complete, we would return to the main menu.