komodo编辑ValueError:无法将字符串转换为float:

时间:2013-08-05 14:34:28

标签: python-2.7 error-handling komodoedit

这是我在Macbook Pro上使用Python 2.7进行Komodo编辑的源代码。

x=float(raw_input('Enter the outstanding balance on the credit card:'))
y=float(raw_input("Enter the annual credit card interest rate as a decimal:"))
z=float(raw_input("Enter the minimum monthly payment rate as a decimal:"))

month=1

while month<=12:
 minimum=x*z
 interest=y/12*x
 principal=minimum-interest
 x=x-principal
 print minimum
 print principal
 print x
 month += 1

每当我输入y的值时,值Error:无法将字符串转换为float:alert出现。我正在关注麻省理工学院的开放课件,即使问题集的模型解决方案也是如此。我该如何解决这个问题?

非常感谢

0 个答案:

没有答案