我在Python 2.7簡單的for循環和打印
我做了一些非常基本的練習我工作,這是我的代碼:
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個步驟被一個接一個地打印出來。
我該如何解決這個問題?
那麼簡單。多謝。 – nutship