Question: cannot figure out the errors. max_amount = 100 min_amount = 1 price = 5 order_amount = float(input(Enter cheese order weight (numeric value):)) if (order_amount >
cannot figure out the errors.
max_amount = 100 min_amount = 1 price = 5
order_amount = float(input("Enter cheese order weight (numeric value):"))
if (order_amount > max_amount): print (order_amount, "is more than currently available stock") elif (min_amount <= order_amount <= max_amount): print (order_amount, "costs $", (price * (order_amount))) else: print (order_amount, "is below minimum order amount")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
