In: Computer Science
Use Python 3.8:
Problem Description
Many recipes tend to be rather small, producing the fewest number of servings that are really possible with the included ingredients. Sometimes one will want to be able to scale those recipes upwards for serving larger groups.
This program's task is to determine how much of each ingredient in a recipe will be required for a target party size. The first inputs to the program will be the recipe itself.
Here is an example recipe that comes from the story "Chitty Chitty Bang Bang", written by Ian Fleming, who is much better known for introducing the world to James Bond:
This is a recipe scaler for serving large crowds! Enter one ingredient per line, with a numeric value first. Indicate the end of input with an empty line. 4 tbsp cocoa 1/4 pound butter 2 tsp corn syrup 1 can evaporated milk 1 tsp water Here is the recipe that has been recorded 4 tbsp cocoa 1/4 pound butter 2 tsp corn syrup 1 can evaporated milk 1 tsp water
How many does this recipe serve? 16 How many people must be served? 25 Multiplying the recipe by 2 8 tbsp cocoa 2/4 pound butter 4 tsp corn syrup 2 can evaporated milk 2 tsp water Serves 32
NOTE: The recipe rounds upwards, since it is usually not practical to obtain fractional cans or fractional eggs, etc.
Your program must obtain a complete recipe (not necessarily this one), echo it with good formatting, and then scale it up as shown above.
Program Hints:
Attractive user-friendly output is rather straightforward, with the help of Python's string formatting features. User-friendly input is a little trickier, but the split function from Unit 2 can be very helpful:
First hint:
The name of an ingredient might be more than one word. This will place all of the extra words into a single string variable 'item':
quant, unit, item = line.split(' ',2) # pull off at most 2 words from the front
Second hint:
Sometimes the measure will be fractional. We can recognize that if the number contains a slash.
if '/' in quant: numer, denom = quant.split('/') # get the parts of the fraction
The rest is left up to the student -- since this is a string operation and this fraction represents a number.
Other Guidelines:
Clarity of code is still important here -- and clear code is less likely to have bugs.
In particular, there should be very good and clear decisions in the code.
And there will be a penalty for usage of break or continue statements.
Planning out the design of the solution before diving into code will help!
The simplest solutions would use a list, but without any
indexing on that list
(or use of range() to get those indexes). Let Python
help you fill and traverse the recipe.
Storing the entire recipe in a single list before splitting things up often produces much simpler programs than trying to store everything into multiple separate lists!
IMPORTANT NOTE: As above, the recipe is provided as input to the program -- it is not part of the program itself. The program may not assume it knows what the ingredients are, or how many there are, or which ingredients have fractions and which ones do not. It must work for any number of valid input lines.
TASKS:
Recipe Data Structure: Effectively uses list (either parallel lists or lists of structures)
Input Recipe: Clearly reads input until blank line encountered
Serving Inputs: Correctly inputs two values: how many recipe serves, and how many will be served
Computing the Scale: math.ciel; if/else to round up; or anything else equivalent
Parsing the ingredients: Correctly parses ingredients (using given 'tricks') May be done at any point in the program
Scaling the recipe: Multiplies whole numbers and numerators by chosen scaling factor
Output presentation: Uses string formatting to present output recipe
Compilation: Program runs fully without change (with valid inputs of 3+ words separated with single spaces)
Correctness: Program behaves as expected (accounting for known errors above)
Only Python 3.8 will be accepted.
Code:
print("Enter one ingredient per line,with numeric valie
first.")
print("Indicate the end of input with an empty line.")
quant=[]
units=[]
items=[]#Declaring 3 lists for 3 parts of ingrediants
while(True):
ing=input("");#Reading the ingrediants
if(ing):
#Here we split the ingrediant
quantity,uni,it=ing.split(" ",2)
quant.append(quantity)
units.append(uni)
items.append(it)
else:#If new line we break the loop
break
print("Here is the recipe that has been recorded")
for i in range(len(quant)):#printing the recipy
print(quant[i]+"\t"+units[i]+"\t"+items[i])
people=int(input("How many does the recipe serve?"))
#No of people the ingreadiants serve
required=int(input("How many people must be served?"))
#Required to serve
mul=1
while(mul*people<required):
#this loop iterates untill the mul*peopele>=required
mul+=1
print("Multiply the recipy by",mul)
#printing the multiple of the reciple
for i in range(len(quant)):
#in this loop we print the multiple of the each ingrediant
if(len(quant[i])==1):
print(str(mul*int(quant[i]))+"\t"+units[i]+"\t"+items[i])
else:
x=quant[i].split("/")
numer=int(x[0])*mul
denom=int(x[1])
print(str(numer)+"/"+str(denom)+"\t"+units[i]+"\t"+items[i])
print("\nServes",mul*people)
#Here we print how many people it can serve
Output:
Indentation: