[solved]-Create Python Program Compares Unit Prices Two Sizes Laundry Detergent Sold Grocery Store Q39022574
Create a Python program that compares the unit prices for twosizes of laundry detergent sold at a grocery store.
I’m so lost with this one. The only coding that I have is:
print(“nPrice Comparison”)
price64 = float(input(“Price of 64oz size: “))
price32 = float(input(“Price of 32oz size: “))

Create a program that compares the unit prices for two sizes of laundry detergent sold at a grocery store. Console Price Comparison Price of 64 oz size: 5.99 Price of 32 oz size: 3.50 Price per oz (64 oz): 0.09 Price per oz (32 oz) : 0.11 Specifications • The formula for calculating price per ounce is: price per ounce = price / ounces • Assume the user will enter valid data. • The program should round the results to a maximum of two decimal places. Show transcribed image text Create a program that compares the unit prices for two sizes of laundry detergent sold at a grocery store. Console Price Comparison Price of 64 oz size: 5.99 Price of 32 oz size: 3.50 Price per oz (64 oz): 0.09 Price per oz (32 oz) : 0.11 Specifications • The formula for calculating price per ounce is: price per ounce = price / ounces • Assume the user will enter valid data. • The program should round the results to a maximum of two decimal places.
Expert Answer
Answer to Create a Python program that compares the unit prices for two sizes of laundry detergent sold at a grocery store. I’m so… . . .
OR

