要计算资本

时间:2019-06-25 23:06:22

标签: python-3.x

我想以5%的比率将一定数量的钱存入储蓄帐户,为期10年。 10年后,我需要$ 10000.00。

任务是了解资本或初始投资

futureValue=(10000)
interestRate=(0.05)
depositePeriod=(10)
capital=futureValue/(1+interestRate)*depositePeriod
print(capital)

我得到95238.xxxxx。但我希望像952.00这样的东西

因为期末不应增加资本利息

1 个答案:

答案 0 :(得分:0)

这比代码更像是一个数学问题,但是在这里,这个FOR循环将为您提供所需的答案

futureValue=(10000)
interestRate=(0.05)
depositePeriod=(10)
capital = futureValue
for no_of_years in range(depositePeriod):
    capital = capital/(1+interestRate)
print(capital)