not sure how many things I'm doing wrong here, I get "could not convert string to float: '5%'. Code is below, any insights appreciated.... many thanks.
tip=input("How much would you like to tip on your US$88.5 cheque, 5%, 12.5%?")
cheque = 88.5
total= cheque*(float(tip)+1)
print("Thank you, the total will be total $%.2f" % (total))
This works when you enter percentage. Works with 5% or 5, too.