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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!