Need a program created in Python (see attached)Need a program created in Python (see attached)

Need a program created in Python (see attached)Need a program created in Python (see attached)


Project 5 - Taking two orders Your customer is a restaurant owner that wants to be able to take orders via automated chat, but they have an ever-changing menu. Expected Functionality: 1. Use python to create a program 2. This program will display this menu. With the menu items already entered and will allow a user to choose two items from the list. 3. The program will then tell the customer the total cost of the two items. 4. If the user enters an item that is not recognized, count that item as nothing. 5. The program should be able to allow the customer to order the same item twice. 6. Do not worry about pluralizing words (sandwich vs sandwiches) 6. Code specific requirement: The program should have the ability to easily switch out the items on the menu (Store the menu items and their prices in one of the data structures - hint: a dictionary could work well here) Example input/output (The user input is in red) Please state what you would like for your first item: BLT Sandwich Your order so far: 1 - BLT Sandwich Please state what you would like for your second item: Fries Your order: 1 - BLT Sandwich 1 - Fries That comes to a total of $13.48. Have a nice day! ----------------------Second example---------------------- Please state what you would like for your first item: nonsense I am sorry, I did not understand the input: nonsense Your order so far: Nothing Please state what you would like for your second item: Drink Your order: 1 - Drink That comes to a total of $1.19. Have a nice day! ----------------------Third example---------------------- Please state what you would like for your first item: Drink Your order: 1 - Drink Please state what you would like for your second item: Drink Your order: 2 - Drink That comes to a total of $2.38. Have a nice day!
May 19, 2022
SOLUTION.PDF

Get Answer To This Question

Submit New Assignment

Copy and Paste Your Assignment Here