range
Create an array consisting of a sequence of numbers.
If you pass just one positional parameter, it is interpreted as the end
of
the range. If you pass two, they describe the start
and end
of the
range.
Example
#range(5) \
#range(2, 5) \
#range(20, step: 4) \
#range(21, step: 4) \
#range(5, 2, step: -1)

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
start
The start of the range (inclusive).
Default: 0
end
The end of the range (exclusive).
step
The distance between the generated numbers.
Default: 1