There was an error while loading. Please reload this page.
1 parent fa96197 commit 3fb6f0fCopy full SHA for 3fb6f0f
1 file changed
financial/amortization_table.py
@@ -1,3 +1,12 @@
1
+"""
2
+Program creates an amortization table for a loan, given
3
+- Principal borrowed
4
+- Rate of interest per annum
5
+- Years to repay the loan
6
+
7
+Wikipedia Reference: https://www.investopedia.com/terms/a/amortization.asp
8
9
10
import pandas as pd
11
12
def payment(principal: float, interest_rate: float, payments: int) -> float:
0 commit comments