Question: This is the combo menu code that i need this stuff added to this is PYTHON Option 2: Create and Append To an Empty List


Option 2: Create and Append To an Empty List In the previous exploration of functions, methods, and list manipulations, you may have come across the .append(0) method. Rather than creating an index spot and defining what data type to expect, you create an empty list at the beginning. Each time the user makes a choice, the append() method adds whatever the user entered to the list. order = [ ] \#Setting up the list . append() \#a function that adds items to a list 2. Modify the combo menu to collect the user's order in a list at the end of the program after the order is complete. 3. Modify your conditionals to provide an appropriate response if the user tries to order something not on the menu
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
