"无法解决的类型:int()< STR()"

时间:2013-02-15 01:08:19

标签: python calculator

我正试图在Python上制作退休计算器。语法没有错,但是当我运行以下程序时:

def main():
    print("Let me Retire Financial Calculator")
    deposit = input("Please input annual deposit in dollars: $")
    rate = input ("Please input annual rate in percentage: %")
    time = input("How many years until retirement?")
    x = 0
    value = 0
    while (x < time):
        x = x + 1
        value = (value * rate) + deposit
        print("The value of your account after" +str(time) + "years will be $" + str(value))

它告诉我:

Traceback (most recent call last):
  File "/Users/myname/Documents/Let Me Retire.py", line 8, in <module>
    while (x < time):
TypeError: unorderable types: int() < str()

我有什么想法可以解决这个问题吗?

2 个答案:

答案 0 :(得分:34)

这里的问题是input()在Python 3.x中返回一个字符串,所以当你进行比较时,你正在比较一个字符串和一个整数,它没有很好地定义(如果字符串是一句话,如何比较字符串和数字?) - 在这种情况下,Python不会猜测,它会引发错误。

要解决此问题,只需调用int()将字符串转换为整数:

int(input(...))

请注意,如果您要处理十进制数字,则需要使用float()decimal.Decimal()之一(取决于您的准确性和速度需求)。

请注意,循环使用一系列数字(而不是while循环和计数)的pythonic方式更多是使用range()。例如:

def main():
    print("Let me Retire Financial Calculator")
    deposit = float(input("Please input annual deposit in dollars: $"))
    rate = int(input ("Please input annual rate in percentage: %")) / 100
    time = int(input("How many years until retirement?"))
    value = 0
    for x in range(1, time+1):
        value = (value * rate) + deposit
        print("The value of your account after" + str(x) + "years will be $" + str(value))

答案 1 :(得分:1)

只是旁注,在Python 2.0中,您可以将任何内容(int到string)进行比较。由于这不是明确的,它在3.0中被更改,这是一件好事,因为您没有遇到将无意义的值相互比较或者当您忘记转换类型时遇到的麻烦。