Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Infinite Loop | The while Loop
course content

Course Content

Python Loops Tutorial

Infinite LoopInfinite Loop

Infinite loops are loops that lack a False condition. They are unbreakable!

Let's examine two examples!

Check out the code below:

Since 2 + 2 always equals 4, there's no way for the loop to reach a False condition.

Now, observe the code below:

Since 2 is always less than 3, this loop has no exit condition.

Infinite loops are best avoided. If not, they can overwhelm our program and prevent us from obtaining the desired results.

Everything was clear?

Section 2. Chapter 2
course content

Course Content

Python Loops Tutorial

Infinite LoopInfinite Loop

Infinite loops are loops that lack a False condition. They are unbreakable!

Let's examine two examples!

Check out the code below:

Since 2 + 2 always equals 4, there's no way for the loop to reach a False condition.

Now, observe the code below:

Since 2 is always less than 3, this loop has no exit condition.

Infinite loops are best avoided. If not, they can overwhelm our program and prevent us from obtaining the desired results.

Everything was clear?

Section 2. Chapter 2
some-alt