For loop with range - Learn Python 3 - Snakify

Lesson 4. For loop with range




1/12. Loops? Why do I need them?

Quite often programs need to repeat some block several times. That's where loops come in handy. To sum first 5 numbers, for sure you can write something like what you see in the code section.

Instructions

Click "Run" to see what happens in output!

1
2
3
4
5
6
7
8
9
10
11
12
sum = 0
sum = sum + 1
sum = sum + 2
sum = sum + 3
sum = sum + 4
sum = sum + 5
print(sum)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX