A fruit company sells oranges for 32 cents a pound plus $7.50 per order for shipping. If an order is over 100 pounds, shipping cost is reduced by $1.50. This program is supposed to ask the user for the number of pounds of oranges and then print the cost of the order, but it is all mixed up! Can you put the lines in the right order?
Note that two lines are indented slightly.
Don't worry if you can't solve this one, as we'll cover all of how to do this in the coming weeks. But playing around with this program --- rearranging lines, keeping whole lines together --- and trying to figure out how to make it work will give you good experience in experimenting with Python.
costFruit = pounds * 0.32 #1
else: #2
if pounds <= 100 : #3
pounds = int(input("Enter pounds: ")) #4
print(totalCost) #5
shipping = 6.00 #6
shipping = 7.50 #7
totalCost = costFruit + shipping #8