私は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ステップすべてが次々に印刷されていることです。
どうすれば修正できますか?