When we write programs, we are implementing algorithms to represent tasks and solve problems. Algorithms typically consist of sequencing, selection, and iteration. Sequencing is the order that commands are executed, and selection determines which tasks should be executed based on specific conditions. Iteration allows us to repeat commands and is also useful when working with lists and strings. One way that we can repeat commands in Python is using a for loop. Let's take a look at how a Python for loop works with a simple step by step tutorial you and your child can follow, and the different ways we can use it in our programs.

Empower your child with Python skills when you enroll them in an award-winning live online Python for AI class led by an expert, and designed by professionals from Google, Stanford, and MIT.

How To Use Python For Loops

A for loop is used to iterate over a sequence, whether that is a list, a string, or a range of values. We can use a for loop to execute a set of statements for each item in a list, letter in a string, or value in a range of values.

The general syntax for a for loop is:

Python for loop example

We start by writing the keyword for followed by a variable name that we want to use to refer to each item we are traversing. Then we write the keyword in followed by the name of the list or string we want to traverse. The colon ( : ) operator is used to specify an indented block of code.

The code we want to execute is indented under the for loop header. This code is executed once for each item in the list or string we are traversing.

Let's use a for loop to traverse a list of names. We can print each name as we go through the list.

Python for loop names list

With this for loop, we are printing each name in the names list. When we run our code, we see each name displayed.

Python names

Strings are a sequence of characters. This means we can use a for loop to iterate through the letters in a string. For example, let's print each letter in the string "Coding is fun" using a for loop like this:

Loop in Python


When we run this code, we see each character displayed on a separate line.

Sometimes we may want to stop a loop early before it has gone through all of the items in a list. We can use a break statement to stop the loop when a specific item is found.

For example, if we want to print each name until we get to "Ava", we can use a break statement inside of an if statement to check if the name is "Ava" and break the loop if this is true. We stop searching the rest of the list when we find "Ava".

Python for loop guide

When we run this code, we see that "Mia", "Luca", and "Ava" are printed. The rest of the items in the names list are not printed.

Python list results

What if we switch the order of these statements?

Switch statement order

If we print after the if statement, then only "Mia" and "Luca" are printed. The break statement exits the loop before reaching the print function.

Python results

Python also has a continue statement that we can use to stop the current iteration of the loop and continue with the next. For example, if we find a specific name in the list, we can continue to the next name in the list instead of printing it.

Continue in Python list

"Isabella" is not printed after "Jayden" because the continue statement stops the current iteration of the loop, skipping the print function.

A for loop can be used to repeat a block of code a specified number of times using the range() function. The range() function returns a sequence of numbers starting at 0 by default. It increases the value by 1 by default and stops at a specified number.

List of numbers in Python

Notice that the range() function repeats up to but not including the specified number.

We can specify the value we want the range() function to start at by adding a parameter. The first parameter specifies the value to start at, and the second parameter specifies the value to stop at.

Python numbers list

Finally, we can also change how much the value is increased by adding a third parameter to the range() function. By default, it increases by 1, but we can change it to increase by a different amount. The first parameter specifies the value to start at, the second parameter specifies the value to stop at, and the third parameter specifies how much to increment by.

Increase value in list in Python

When we have multiple lists that we want to traverse at the same time, we can use nested for loops. A nested loop is a loop inside of another loop. The inner loop will complete all of its iterations before moving on to the next iteration of the outer loop.

How to use Python for loops

Real-World Applications Of For Loops

For loops aren't just an abstract concept—they play a crucial role in many real-world applications your child might find exciting. Here’s how:

  1. Video Game Development: For loops are essential in creating video games. They can be used to control characters' movements, manage levels, and even generate game environments. For example, a for loop might be used to spawn multiple enemies at different locations or to animate a character's actions frame by frame.
  2. Processing Large Datasets: In fields like data science and research, for loops help process and analyze large amounts of data quickly. Imagine having a spreadsheet with thousands of rows of information—loops can be used to calculate totals, find averages, or identify patterns across all that data in just seconds.
  3. Automating Tasks: For loops are also vital in automating repetitive tasks, such as sending out emails to a list of recipients. In this case, a loop can be used to go through each email address and send a personalized message, saving time and effort.

Python For Loop Coding Challenges

After learning all about for loops, it’s time to put those skills into practice with some fun and progressively challenging coding exercises! Here are a few tasks to get started:

  1. Create a Multiplication Table: Use a for loop to generate and display a multiplication table for numbers 1 through 10. This exercise helps kids understand how loops can be used to repeat calculations and display results in an organized way.
  2. Count the Vowels in a String: Write a program that asks the user to input a sentence and then counts the number of vowels (A, E, I, O, U) in that sentence using a for loop. This task reinforces how loops can be used to iterate over strings, and perform specific operations on each character.
  3. Sum of Even Numbers: Challenge your child to write a program that calculates the sum of all even numbers between 1 and 100 using a for loop. This exercise will solidify their understanding of loops and conditional statements working together.

Use Python For Loops

A for loop is a powerful tool for repeating a block of code and working with lists and strings. Loops make up a fundamental building block for writing algorithms and simplifying our code. Your child can learn more about the different ways we can use for loops in our award-winning online Python for AI course and Python camps. They can even earn a certificate! Enroll them in our free Python class to get started with live guidance from an engaging instructor, in a small group setting of just five students max.

Written by Jamila Cocchiola who has always been fascinated with technology and its impact on the world. The technologies that emerged while she was in high school showed her all the ways software could be used to connect people, so she learned how to code so she could make her own! She went on to make a career out of developing software and apps before deciding to become a teacher to help students see the importance, benefits, and fun of computer science.