Westonci.ca is the premier destination for reliable answers to your questions, provided by a community of experts. Join our platform to connect with experts ready to provide accurate answers to your questions in various fields. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.
Sagot :
Answer:
The program in Python is as follows:
name = input("Name of item: ")
PoundPrice = int(input("Pound Price: "))
Pounds = int(input("Weight (pounds): "))
Ounces = int(input("Weight (ounce): "))
UnitPrice = PoundPrice/16
TotalPrice = PoundPrice * (Pounds + Ounces/16)
print("Unit Price:",UnitPrice)
print("Total Price:",TotalPrice)
Explanation:
This gets the name of the item
name = input("Name of item: ")
This gets the pound price
PoundPrice = int(input("Pound Price: "))
This gets the weight in pounds
Pounds = int(input("Weight (pounds): "))
This gets the weight in ounces
Ounces = int(input("Weight (ounce): "))
This calculates the unit price
UnitPrice = PoundPrice/16
This calculates the total price
TotalPrice = PoundPrice * (Pounds + Ounces/16)
This prints the unit price
print("Unit Price:",UnitPrice)
This prints the total price
print("Total Price:",TotalPrice)
We hope you found this helpful. Feel free to come back anytime for more accurate answers and updated information. We hope this was helpful. Please come back whenever you need more information or answers to your queries. Keep exploring Westonci.ca for more insightful answers to your questions. We're here to help.