You are on page 1of 10

Loops

While Loops

- Implements the repeated execution of


code based on a given Boolean
condition

- While a certain condition is true, the


code in the loop will run
For Loops

- Implements the repeated execution of


code based on a loop counter or loop
variable

- Executes code within the loop a certain


number of times
For Loops
Iterating over a
Sequence
Sequence = either a list, a tuple, a
dictionary, a set, or a string
Example
This is an example of iterating
through a string:
The Break Statement
With the break statement, we can
stop the loop before it has looped
through all the items:
The Continue
Statement
With the continue statement we can
stop the current iteration of the
loop, and continue with the next:
Nested Loops
A nested loop is a loop inside a loop.

The "inner loop" will be executed


one time for each iteration of the
"outer loop":

Useful for iterating over a 2D List


The Pass Statement
for loops cannot be empty, but if you
for some reason have a for loop with
no content, put in the pass
statement to avoid getting an error.

You might also like