Free Python course. Sign Up for tracking progress →

Python: For loop and range function

Imagine that we have a series of numbers from 0 to 9. We want to add these numbers together. We could do it like this:

sum = 0
i = 0

while i < 10:
    sum += i
    i += 1

print(sum) # => 45

First, we set the initial sum to 0. Then we run a loop in which the variable i starts taking values starting from 0 and going up to 10. At each step we add the value of i to our sum and increase i by 1. As soon as i becomes equal to 10, the loop ends and the program gives us the sum of all numbers from 0 to 9 equal to 45.

We can rewrite this code into a for loop

sum = 0

for i in range(10):
    sum += i

print(sum) # => 45

The first example uses while, which keeps running until i < 10. The second uses for and iterates from 0 to 9 using range(). Both do the same thing: add the numbers from 0 to 9 to the sum variable, but they use different ways to iterate.

The range() function

The range function in Python is a built-in function that creates a sequence of numbers within a specific range. It can be used in a for loop to control the number of iterations.

range() has several uses:

  • range(stop) creates a sequence from 0 to stop - 1.
  • range(start, stop) creates a sequence from start to stop - 1.
  • range(start, stop, step) creates a sequence of numbers from start to stop - 1, with step step.

We saw the example with one final value above. Let's consider another one - print the numbers from 1 to 3 to the screen:


for i in range(1, 4):
    print(i)

# => 1
# => 2
# => 3

Now let's try to output the numbers in reverse order

for i in range(3, 0, -1):
    print(i)

# => 3
# => 2
# => 1

In the examples above, we can see that the iteration completes to a final value

Instructions

Implement the print_table_of_squares(from, to) function that prints squares of numbers to the screen. It first from and last to a number prints the string square of <number> is <result>

Call examples:

print_table_of_squares(1, 3)
# => square of 1 is 1
# => square of 2 is 4
# => square of 3 is 9
The exercise doesn't pass checking. What to do? 😶

If you've reached a deadlock it's time to ask your question in the «Discussions». How ask a question correctly:

  • Be sure to attach the test output, without it it's almost impossible to figure out what went wrong, even if you show your code. It's complicated for developers to execute code in their heads, but having a mistake before their eyes most probably will be helpful.
In my environment the code works, but not here 🤨

Tests are designed so that they test the solution in different ways and against different data. Often the solution works with one kind of input data but doesn't work with others. Check the «Tests» tab to figure this out, you can find hints at the error output.

My code is different from the teacher's one 🤔

It's fine. 🙆 One task in programming can be solved in many different ways. If your code passed all tests, it complies with the task conditions.

In some rare cases, the solution may be adjusted to the tests, but this can be seen immediately.

I've read the lessons but nothing is clear 🙄

It's hard to make educational materials that will suit everyone. We do our best but there is always something to improve. If you see a material that is not clear to you, describe the problem in “Discussions”. It will be great if you'll write unclear points in the question form. Usually, we need a few days for corrections.

By the way, you can participate in courses improvement. There is a link below to the lessons course code which you can edit right in your browser.


If you got stuck and don't know what to do, you can ask a question in our community