Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Today's assignment will involve creating a food ordering system for the ASCII Food Truck company The company's motto is, Never leave hungry, and as such
Today's assignment will involve creating a food ordering system for the ASCII Food Truck company The company's motto is, Never leave hungry, and as such every meal they serve is a combo of a drink entre, and a side. ASCII There are several options of each to choose from and they would like a system in which they can easily add new items The system should allow users to see the current menu and order combos. Once an order is complete it should print e receipt of the order along with the total order price Problem 2 Internally the price list will be stored using a dictionary with the food iter as the key and the price as the value. Given the following example price list: PRICES - 1'bagel':3.45, *coffee:2.15, sandwich' :4.25) Write the coded necessary to answer these questions: 1. What is the price of a sandwich? 2. How much would a bagel and coffee cost? 3. What are all the food items for sale and their cost (use 'item: Sprice' format) Problem 1 Each combo that our food truck sales comes with three items Drink Entre Side The price for each combo is based on the specific items ordered. Define a class that can be used to store all of the relevant information
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started