This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Decimal vs Float64: Does it matter for financial calculations? | |
| """ | |
| from decimal import Decimal | |
| import time | |
| # TEST 1: Single 30-year mortgage | |
| print("TEST 1: Single 30-year mortgage (360 payments)") |