Skip to content

Instantly share code, notes, and snippets.

Created July 30, 2013 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6115943 to your computer and use it in GitHub Desktop.
Save anonymous/6115943 to your computer and use it in GitHub Desktop.
This is a code that won't let me use 'b'. I can't figure out where the syntax error is.
outbal= float(raw_input('enter the outstanding balance on your credit card:'))
annualrate= float(round(raw_input('Enter the annual credit card interest rate as a decimal:')), 2)
monthlyrate= round(annualrate/year, 2)
month=1
x = 1
while y > 0:
while month <= 12:
a = round(float(((annualrate /12)*outbal)+outbal, 2)
y = round(float(a - x10))
print "Outbal minus payment equals:" d
if y >= 0:
month = month + 1
outbal = y
if y > 0:
x = x + 1
Else:
if y <= 0
print 'Monthly payment to pay off debt in 1 year:', a
print 'number of months needed:', month
print 'Balance:' b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment