total = 0
another = 'y'
while another[0].lower() == 'y':
    price = float(input("Enter price:"))
    total += price
    another = input("Another item?")
print("You owe:", total)