Question: I want a code that works in python IDLE please. python code Sample 1/0: (user input shown in black) Problem Statement: Welcome to Salad Bar

I want a code that works in python IDLE please. python code
Sample 1/0: (user input shown in black) Problem Statement: Welcome to Salad Bar In this assignment, you will design a simple salad bar interface. The program will display a main menu to the user to begin. User will choose from given options to order types of salad, calculate and display total cost and tax. The program will repeat taking user input until user hits exit option. Design your solution: 1. Main menu: Create a main user menu to display the main options to the user. User have the option to choose between 1 and 3 . The program will display an error message if user option is not within the valid selection (less than 1 and greater than 3). Think about using a conditional structure to serve the user choice. Invalid option (for e.g. 4) can be handled with default else block (please see sample 1/O for error message). A main menu is as follows and detailed of each option is provided below: a. Order Salad: User can order three different types of salad base: veggie, seafood and protein-based. Like main menu any invalid option will display an error message. A sample menu is as follows along with price: Salad Menu 1. Vegetarian $10.99 2. Seafood - $16.99 3. Protein - $14.99 b. Checkout: Option 2 'Checkout' in main menu will calculate the total cost along with the sales tax. To calculate the tax, you can multiply sales tax with total cost. For this program, you can assume VA sales tax4.3%. c. Quit: Quit will simply exit the program once user hits ' 3 '. You can display a message for this option. (See below sample I/O)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
