Write a PYTHON program to prepare a menu for a restaurant customer. The customer will input his/her budget, and the program will compute their bill based on the following: The customer must order a main dish (15TL). If they have money remaining, a starter, dessert or both will be added to their menu, depending on the remaining budget. (Starter costs 10 TL, Dessert costs 8 TL) The program will display the final bill, as well as their remaining budget. --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Sample Run: Enter budget: 24 Main dish added. Budget not sufficient for starter... Dessert added. Total Meal Cost: 23 Remaining Budget: 1 Sample Run: Enter budget: 50 Main dish added. Starter added. Dessert added. Total Meal Cost: 33 Remaining Budget: 17 Sample Run: Enter budget: 28 Main dish added. Starter added. Budget not sufficient for dessert... Total Meal Cost: 25 Sample Run: Enter budget: 12 More money needed
Write a PYTHON
The customer must order a main dish (15TL).
If they have money remaining, a starter, dessert or both will be added to their menu, depending on the remaining budget. (Starter costs 10 TL, Dessert costs 8 TL)
The program will display the final bill, as well as their remaining budget.
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Sample Run: Enter budget: 24 Main dish added. Budget not sufficient for starter... Dessert added. Total Meal Cost: 23 Remaining Budget: 1
Sample Run: Enter budget: 50 Main dish added. Starter added. Dessert added. Total Meal Cost: 33 Remaining Budget: 17
Sample Run: Enter budget: 28 Main dish added. Starter added. Budget not sufficient for dessert... Total Meal Cost: 25 Sample Run: Enter budget: 12 More money needed
Step by step
Solved in 4 steps with 5 images