For loops

By Martin McBride, 2022-09-15
Tags: for loop list iterator generator list comprehension
Categories: python language intermediate python


You will probably have met for loops in conjunction with the range function, in simple code like this:

for i in range(5):
    print(i)

This code prints values 0, 1, 2, 3, and 4. It is more or less the Python equivalent of the following C or Java style loop:

for (i = 0; i < 5; i++)
    {
    print(i);
    }

In fact, in Python, loop indices (the variable i) are not used all that often - it might even be considered un-Pythonic. Usually for loops are used to loop directly over a list or other sequence of values.

Pythonic for loops

In this tutorial, we will look at various other techniques available in Python to make your loops shorter and easier to read. The techniques we will cover are:

We can use these techniques to loop over sequences of different types, such as:

  • Lists.
  • Tuples.
  • Strings (character by character).
  • Sets.
  • Dictionaries.

We can also loop over iterables and generators.

Related articles

Join the GraphicMaths/PythonInformer Newsletter

Sign up using this form to receive an email when new content is added to the graphpicmaths or pythoninformer websites:

If you found this article useful, you might be interested in the book NumPy Recipes or other books by the same author.

Popular tags

2d arrays abstract data type and angle animation arc array arrays bar chart bar style behavioural pattern bezier curve built-in function callable object chain circle classes close closure cmyk colour combinations comparison operator context context manager conversion count creational pattern data science data types decorator design pattern device space dictionary drawing duck typing efficiency ellipse else encryption enumerate fill filter for loop formula function function composition function plot functools game development generativepy tutorial generator geometry gif global variable greyscale higher order function hsl html image image processing imagesurface immutable object in operator index inner function input installing integer iter iterable iterator itertools join l system lambda function latex len lerp line line plot line style linear gradient linspace list list comprehension logical operator lru_cache magic method mandelbrot mandelbrot set map marker style matplotlib monad mutability named parameter numeric python numpy object open operator optimisation optional parameter or pandas path pattern permutations pie chart pil pillow polygon pong positional parameter print product programming paradigms programming techniques pure function python standard library range recipes rectangle recursion regular polygon repeat rgb rotation roundrect scaling scatter plot scipy sector segment sequence setup shape singleton slicing sound spirograph sprite square str stream string stroke structural pattern symmetric encryption template tex text tinkerbell fractal transform translation transparency triangle truthy value tuple turtle unpacking user space vectorisation webserver website while loop zip zip_longest