Skip to content

Commit 3fb6f0f

Browse files
author
Marks Mac
committed
added wiki
1 parent fa96197 commit 3fb6f0f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

financial/amortization_table.py

+9
Original file line numberDiff line numberDiff line change
@@ -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+
110
import pandas as pd
211

312
def payment(principal: float, interest_rate: float, payments: int) -> float:

0 commit comments

Comments
 (0)