Cafe Management System
Cafe Management System
Code Implementation:
menu = {
'pizza': 40,
'pasta': 50,
'burger': 60,
'salad': 70,
MANDA RAMASATYAPRIYA
322103312117
cafE MANAGEMENT SYSTEM
'coffee': 80,
}
order_total = 0
item_1 = input("Enter the name of the item you want to order: ").lower()
if item_1 in menu:
order_total += menu[item_1]
print(f"Ordered item '{item_1}' has been added to your order.")
else:
print(f"Ordered item '{item_1}' is not available.")
MANDA RAMASATYAPRIYA
322103312117
cafE MANAGEMENT SYSTEM
OUTPUT:
Menu:
pizza: Rs 40
pasta: Rs 50
burger: Rs 60
salad: Rs 70
coffee: Rs 80
Enter the name of the next item you want to order: burger
Menu:
pizza: Rs 40
pasta: Rs 50
burger: Rs 60
salad: Rs 70
coffee: Rs 80
Enter the name of the item you want to order: pizza
Ordered item 'pizza' has been added to your order.
Do you want to add another item? (yes/no): no
Total amount to pay: Rs 40
MANDA RAMASATYAPRIYA
322103312117
cafE MANAGEMENT SYSTEM
MANDA RAMASATYAPRIYA
322103312117