Mortgage Calculator (Python)

vegaseat 2 Tallied Votes 1K Views Share

Just a small Python program to calculate monthly payments and other costs. I have compared it with some of the calculators available from many of the online mortgage companies, and results seem to match.

# a Python program to calculate mortgage payments and mortgage costs
# tested with Python24 by      vegaseat      04jun2006
 
# give total loan
principal = 100000.0
# give annual percent interest
percent_interest = 6.5
# calculate monthly interest rate
monthly_interest = percent_interest/(100 * 12)
# give length of mortgage
years = 10
# calculate total number of payments
payment_number = years * 12

monthly_payment = principal * ( monthly_interest / (1 - (1 + monthly_interest) ** (- payment_number)))

print "Total loan = $%0.2f" % principal
print "Interest   = %0.2f%s" % (percent_interest, "%")
print "Years      = %0.f" % years
print "Number of payments = %0.f" % payment_number
print "Payment amount     = $%0.2f" % monthly_payment

print "-"*60

print "Total cost     = $%0.2f" % (payment_number * monthly_payment)
print "Total interest = $%0.2f" % (payment_number * monthly_payment - principal)

print "-"*60

# give payments made
payments = 100

rem_principal = principal * (1 - ((1 + monthly_interest) ** payments - 1) / ((1 + monthly_interest) ** payment_number - 1))

print "The outstanding principal after %d payments is $%0.2f" % (payments, rem_principal)
print "At this point you have paid a total of $%0.2f" % (monthly_payment * payments)
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.