我正在使用 Python 2.7
我正在做一些非常基本的练习,这是我的代码:
def main():
print """Program computes the value of an investment
carried 10 years into the future"""
principal = input("Enter the principal: ")
apr = input("Provide (in decimal format) the annual percentage rate: ")
for i in range(10):
principal = principal * (1 + apr)
print "The value in 10 years will be: $", principal
main()
代码正在运行,但我希望输出只是最终结果。我现在得到的是一个接一个地打印循环的所有 10 个步骤。
我该如何解决?