Ratings & reviews

4.7213 ratings

Martin B.

23 days ago

👍

Alex H.

28 days ago

The visualizations on code functions are excellent! Adds a layer of information to see the logic that makes it practical and straightforward.

Maksym K.

40 days ago

The end was very confusing

75%
19%
4%
1%
1%
info

Complete all chapters to get certificate

0%

The for Loop

chevron

We start learning Python loops with the for loop. A for loop is used for iterating over a sequence. Let's go!

The first for Loop

Range() in a for Loop 1/2

Range() in a for Loop 2/2

List & for Loop

If/Else in a for Loop

Break/Continue in a for Loop

Pass, Else in a for Loop

Enumerate() in a for Loop

Challenge

The while Loop

chevron

With the while loop, we can execute a set of statements as long as a condition is true. We are going to work with this loop and handle different problems!

The First while Loop

Infinite Loop

List & while Loop

If/Else in a while Loop

Break/Continue in a while Loop

Pass, Else in a while Loop

Nested Loops

chevron

A nested loop is a loop inside a loop. Sound difficult? Don't worry! We will handle this loop!

First Nested Loop Pattern

Nested for Loop

Nested while Loop

While Loop inside a for Loop

If/Else in a Nested Loop

Break/Continue in a Nested Loop

Challenge