Ask your own question, for FREE!
Computer Science 7 Online
OpenStudy (osanseviero):

Python problem: Infinite loop

OpenStudy (osanseviero):

annualInterestRate=float(raw_input("enter a number: ")) balance=float(raw_input("enter a number: ")) monintrate=annualInterestRate/12.0 lowermonthpay=balance/12 uppermonthpay=(balance * (1+monintrate)**12)/12.0 monthlypayment=1 epsilon=0.2 minpay=(lowermonthpay+uppermonthpay)/2.0 while minpay >= epsilon: if balance < 0: uppermonthpay=minpay else: lowermonthpay=minpay minpay= (lowermonthpay+uppermonthpay)/2.0 print "Lowest Payment: " + str(minpay)

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!