Question: Please Help me solve this question. It has to be done in Python Language. Please Don't use advanced python and solve it using basic python
Please Help me solve this question. It has to be done in Python Language. Please Don't use advanced python and solve it using basic python like functions, lists, tuples, dictionaries, strings, etc.

Question 1. The canteen in the Institute maintains has a table of prices of items, like: 1. Samosa: 15 2. Idli: 30 3. Maggie: 50 4. Dosa, 70 For the program you have to write, set the menu in your program by this statement (feel free to add more items). menu = [("Samosa", 15), ("Idli", 30), ("Maggie", 50), ("Dosa", 70), ("Tea", 10), ("Coffee", 20), ("Sandwich", 35), ("ColdDrink", 25)] Write a program to take a user's order on a terminal and compute the bill. First show the menu by printing the menu. For ordering an item, the user inputs the item number and the quantity desired (e.g. an input can be: 31 followed by 15 ). The program should prompt the user to order more, till he/she hits return (without any numbers) - which is the end of the order. Print a bill for this order in the form (for the input example above): Maggie, 1, Rs 50 Samosa, 5, Rs 75 TOTAL, 6 items, Rs 125
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
