Question: python ordering food coding Clarification (2/19): You may assume all input will be lowercase-only strings. You may also assume that we will not enter an

python ordering food coding

python ordering food coding Clarification (2/19): You may assume all input will

Clarification (2/19): You may assume all input will be lowercase-only strings. You may also assume that we will not enter an item that contains both burger and soda.

You've just been hired to work at a popular restaurant in the center of town. Your manager, trying to keep up with the internet age, would like to design a new app so that customers can order on the go. Since you're quite proficient in Python, you eagerly accept the job Write a Python program that repeatedly prompts the user to enter a food item until a null string is entered. You should store each item entered in a Python list, then print out the items, one at a time, ignoring duplicates (the customer clearly mistyped). Finally, print out the total cost of the food items entered, as follows If the food's name contains 'burger', it costs $3.00 If the food's name contains 'soda', it costs $2.00 All other foods are premium items and cost $5.00 You may want to use the Python in operator to check each entered string for 'burger' or 'soda'. An example interaction with the new app is given below: Welcome to the Python Buffet, the hippest restaurant in town! What would you like to order? cheeseburger Would you like to order anything else? cream soda Would you like to order anything else? cheeseburger Oops. You must have entered cheeseburger again by accident Would you like to order anything else? pineapple Would you like to order anything else? You have ordered the following: cheeseburger cream soda pineapple This will cost you a total of $10.00 Thank you for your patronage! Constraints/Comments You must store the entered food items in a Python list You must remove (or not add in the first place) duplicate items from the list manually (you cannot typecast it as a set, for example) You must return the total cost of the items in proper dollar and cents format (HINT: Use the format function!) Remember, duplicate items do not contribute to the total cost of the order; your customers only want to pay once for each unique item! You are not allowed to import any modules for this

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!