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.
range()
functionThe 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
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
If you've reached a deadlock it's time to ask your question in the «Discussions». How ask a question correctly:
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.
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.
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.
Your exercise will be checked with these tests:
1from index import print_table_of_squares
2from hexlet.test import expect_output
3
4
5def test(capsys):
6 expected = '''square of 1 is 1
7square of 2 is 4
8square of 3 is 9
9square of 4 is 16
10square of 5 is 25
11square of 6 is 36
12square of 7 is 49
13square of 8 is 64
14square of 9 is 81
15square of 10 is 100'''
16
17 print_table_of_squares(1, 10)
18 expect_output(capsys, expected)
19
Teacher's solution will be available in: