Pythonで作る元本を一定期間、単利運用したときの金額計算

Python

定期預金等で元本を一定期間、同じ金利(年利)で単利運用したときの金額をpythonを用いて計算します。

計算式

 金額 = 元本 × (1 + 年利率) × 年数

Pythonプログラム

import math

# principal: 元本
# annual_interest: 年利
# num_of_year: 年数
def simple_interest(p, a, n):
    return p * ( a / 100 * n + 1)

principal = 1000000
annual_interest = 1
num_of_year = 5

amount = simple_interest(principal, annual_interest, num_of_year)
print(math.floor(amount)) # 小数点以下を切り捨て

計算例

例)100万円を年利率1%で単利運用したときの5年後の金額

PythonのプログラムをGoogle Colabへコピーして結果を確認してみて下さい。

コメント