The <range> block is equivalent to the range() function in Python; it allows for iteration within loops.
See the Python documentation for more details.
•« start » : First index of the iteration
•« stop » : Last index of the iteration
•« step » : Step size between each iteration
•« range » : = range(« start », « stop », « step »)
The inputs are of type int