這是我的代碼。我正在做一個開始行動。當我運行程序錯誤字符串浮動
,我可以把這些值,但是當我走出循環出現以下錯誤信息:
a + = float (input ("Enter the product cost"))
ValueError異常:無法將字符串轉換爲float:
能誰來幫幫我?
這裏有雲:
e = 0.25
f = 0.18
a = 0.0
while True:
a += float(input("Enter the product cost: "))
if a == "":
break
b = a*e
c = a*f
d = a+b+c
print ("tax: " + b)
print ("tips: " + c)
print ("Total: " + d)
你可以做'A_INPUT =浮動(輸入( 「輸入產品成本」))' –