Python For Loop

A loop structure in programming language is to repeat a piece of code or block several times. Python has several types of loops such as for loop, for-each loop, and while loop.

Advertisements

In this article, you will learn about for loop structure. A for loop is used when you know exact number of times a loop is going to run. Each time a code is executed within the loop is called an iteration.

Suppose you want to count how many item in a shopping list. Then you go through each item of the list is an example of loop. Here you are looping through each item of the list.

Python For Loop Structure

The traditional way of writing a for loop in python is as follows.

# for loop structure
for i in range([start], end, [step]):
      do something
      do something

Let’s understand the above code in detail. The loop starts with a keyword called for which is a reserved keyword in python. The a variable i represents each item in a range () or list. This variable i take one value during each iteration from the range. The range function represents a list of numbers that has a start and ending number. The range(1, 10) will include all numbers starting from 1 to 10. However, it includes only starting number and does not include the last or end number.

The step is optional, and it tells the loop to skip few numbers or loop in steps of some value. Consider the following example.

# This example prints all number in a range.
for i in range(1,10):
    print(i)

The above for loop will assign a number from i to 10 to the variable i during each iteration. Then the value of i is printed as output. The output of the program is given below.

1
2
3
4
5
6
7
8
9

Note that the loop does not print the last digit in the range.

Different Types of Ranges

You can set the range function in different ways. Here are some examples.

Advertisements

Range without start

# This is example of for loop with range without a start 
for i in range(5):
   print(i)

The loop will print all number starting from 0 to 5 with except the last digit 5.

0
1
2
4

Range with steps

# This example prints all the even numbers
for i in range(0, 10, 2):
     print(i)

This loop will print all the even numbers between 0 to 10 except 10. The number 2 in the range allow the loop to print the second digit from the current value of i. Suppose if i starts with 0, then the next value of i will be 2 and so on.

0
2
4
6
8

Range in reverse order

Sometimes you want to loop through in reverse order, that is, the higher number is first and lowest number is last. Again, the last digit is skipped. Consider the following example.

for i in range(10,0, -1)
   print(i)

The above range is printed in reverse order.

10
9
8
7
6
5
4
3
2
1

Note that the last digit 0 is not printed. In the next article, you will learn another way of writing the for loop.

Advertisements

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.