Skip to content

Instantly share code, notes, and snippets.

@jt-hill
jt-hill / decimal_test.py
Created November 28, 2025 19:18
Decimal vs float precisoin and speed tests
"""
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)")