Skip to content

Commit

Permalink
added wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
Marks Mac committed Apr 18, 2024
1 parent fa96197 commit 3fb6f0f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions financial/amortization_table.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
"""
Program creates an amortization table for a loan, given
- Principal borrowed
- Rate of interest per annum
- Years to repay the loan
Wikipedia Reference: https://www.investopedia.com/terms/a/amortization.asp
"""

import pandas as pd

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

Check failure on line 12 in financial/amortization_table.py

View workflow job for this annotation

GitHub Actions / ruff

Ruff (I001)

financial/amortization_table.py:10:1: I001 Import block is un-sorted or un-formatted
Expand Down

1 comment on commit 3fb6f0f

@marktheawesome
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Created wiki referenced

Please sign in to comment.