Answer:
ItemName=input("Enter the name of the item purchased: ")
PoundPrice=input("Enter the price of an item per pound: ")
Pound=input("Enter the weight in pound: ")
Ounce=input("Enter the weight in ounce: ")
UnitPrice=int(PoundPrice)/16
TotalPrice=int(PoundPrice)*(int(Pound)+int(Ounce)/16)
print("The unit price is: "+UnitPrice)
print("The total price is: "+TotalPrice)
If this is what you needed:/