10.6. Infinite Loops¶
In the last section, we saw what happens if a loop’s control variable is never updated. It will run forever.
Getting a computer to repeat a set of statements is simple. Sometimes it can be tricky to get it to stop. Remember that a while loop will execute as long as the logical expression is true. What happens if the logical expression is always true?