Python Forum
Another infinite loop
Thread Rating:
  • 2 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Another infinite loop
#2
Line 15 is resetting balance to 100 at the end of every loop, so it can never reach 0.

Edit: I ran a test without that and you are still going to have problems. Balance passes zero and goes way down, never reaching 0 exactly. You might want to test if the balance is close enough (like less than a penny from 0). Also, in a bisectional search you are changing the upper or lower bound and picking the middle repeatedly. You're not changing the bounds, just the monthly payment. And once the balance gets to zero, line 14 continually increase the monthly payment.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply


Messages In This Thread
Another infinite loop - by wlsa - Jul-19-2018, 12:41 AM
RE: Another infinite loop - by ichabod801 - Jul-19-2018, 01:37 AM
RE: Another infinite loop - by wlsa - Jul-19-2018, 02:03 AM
RE: Another infinite loop - by buran - Jul-19-2018, 03:31 AM
RE: Another infinite loop - by ichabod801 - Jul-19-2018, 06:21 AM
RE: Another infinite loop - by buran - Jul-19-2018, 06:41 AM
RE: Another infinite loop - by ichabod801 - Jul-19-2018, 06:43 AM
RE: Another infinite loop - by wlsa - Jul-20-2018, 12:04 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Infinite loop Danado 4 3,448 Aug-16-2021, 05:56 PM
Last Post: deanhystad
  Help with while loop creating an infinite loop. FWendeburg 3 4,011 Jan-30-2019, 08:28 PM
Last Post: FWendeburg
  Infinite loop/ only half working anclark686 5 6,181 Sep-09-2018, 07:31 AM
Last Post: buran
  Why is this giving me an infinite loop? wlsa 4 5,041 Jul-25-2018, 10:11 PM
Last Post: cyberpatje
  How to stop an infinite loop in spyder if it's currently running? wlsa 3 26,870 Jun-30-2018, 03:27 AM
Last Post: ichabod801
  Infinite loop Truman 9 11,137 Jan-19-2018, 11:25 PM
Last Post: j.crater

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020