DEV Community

hrishikesh1990
hrishikesh1990

Posted on • Originally published at flexiple.com

Using Python to Loop through lists

In this short tutorial, we look at how to use Python to loop through a list. We break down the code so that you understand the concept thoroughly.

This tutorial is a part of our initiative at Flexiple, to write short curated tutorials around often used or interesting concepts.

Table of Contents - Python loop through list

Python Loop Through List:

Quite often you might find yourself wanting to run through all the items in your list. This could be to either display the items or to perform a task on the items.

An example of this would be to change the case of a list of strings or to perform arithmetic operations on a list of numbers.

In both cases, you are required to perform a single task over all the items in a list. Python provides a method to achieve this. Using a ‘for’ loop, we can make Python loop through the list and perform the task.

This is the most efficient way to loop through a list with ease irrespective of whether the list contains 10 or 1000 items.

Code and Explanation:

Let's say we have a list containing the various colors of the rainbow.

colors = ["red", "orange", "yellow", "green", "blue", "indigo", "violet"]
Enter fullscreen mode Exit fullscreen mode

Now let us assume we have to print each color in a different line. To achieve this manually, we would have to keep changing the index in our code for each color. However, by using the for loop we leave it to Python to loop through our list.

Let’s write the code to do that:

colors = ["red", "orange", "yellow", "green", "blue", "indigo", "violet"]

for color in colors:
    print(color)
Enter fullscreen mode Exit fullscreen mode

This code iterates over the list and prints the colors in the list. Let’s take a closer look at what has happened here.

for color in colors:
Enter fullscreen mode Exit fullscreen mode

This line tells Python to take the first value from the list colors and assign it with the variable color. And once that is done we move on to the next line.

    print(color)
Enter fullscreen mode Exit fullscreen mode

Since color now contains the first value which in our case is red, it gets printed. Python then looks to see if there are more elements in the list and since it does, it repeats the process again until it has done it for all the items.

To summarize what we have done here, we have assigned a list called colors and we create a for loop which tells Python that "for every color in the list of colors, print the color”.

Closing Thoughts:

As you may have noticed, we named our list colors (plural) and the variable in our for loop as color (Singular). This is a very good practice when it comes to naming as it would help make your code more readable.

However, this is only a best practice and any other variables would also work. Other tutorials may contain more concise but complex methods in Python to loop through a list, but I would recommend following this method as it is more readable. Once you have understood this feel free to try out more complex methods.

Do let me know your thoughts in the comments section below. :)

Top comments (4)

Collapse
 
incrementis profile image
Akin C.

Hello hrishikesh1990,

thanks for your article.
I particularly like your final thoughts, expecially "we named our list colors (plural) and the variable in our for loop as color (Singular)".
I always do this intuitively and now I'm happy to read that this is a best practice :D!

Collapse
 
hrishikesh1990 profile image
hrishikesh1990

Glad to hear that. Indeed, it's a good practice and would significantly increase the readability of the code.

Collapse
 
aatmaj profile image
Aatmaj

Good post!

Collapse
 
hrishikesh1990 profile image
hrishikesh1990

Thank you, Aatmaj. :)