x = float(input("What is/was the cost of the meal?"))
y = float(input("What is/was the sales tax?"))
z = float(input("What percentage tip would you like to leave?"))
print ("Original Food Charge: ${}"
.format(x)))
print ("Sales Tax: ${}"
.format((y/100)*x)))
print ("Tip: ${}"
.format(x*(z/100)))
print ("Total Charge For Food: ${}"
.format(x+((y/100)*x)+((z/100)*x)))
输出错误:
第 10 行,语法错误:.format(x))):line 1015
有人报告说这在他们早期版本的python(我认为是v2.6)中有效。我正在使用后来的 3.2.3 并绞尽脑汁想知道为什么这不适用于这个版本。有人请启发我,这对我来说很有意义。