Guest User

Untitled

a guest
Jan 15th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. for month in range (1,13):
  2. print ('Month: ' + str(month)
  3. interest = (annualInterestRate/12)*balance
  4. minimumpayment = balance*monthlyPaymentRate
  5. print ('Minimum monthly payment: ' + str(monthlyPaymentRate)
  6. total = monthlyPaymentRate-interest
  7. print ('Total Paid: ' + str(round(total,2)
  8. balance = balance-total
  9. print ('Remaining Balance: ' + str(round(balance,2))
Add Comment
Please, Sign In to add comment