Guest User

Untitled

a guest
Jan 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. balance = 4773
  2. annualIntRate = 0.2
  3. monthlyIntRate = annualIntRate / 12
  4.  
  5. for month in range (1, 13):
  6.     balance = (balance * monthlyIntRate) + balance
  7. monthlyPayment = balance / 12
  8. print str(monthlyPayment)
Add Comment
Please, Sign In to add comment