How to use range function in Python
In this video we will learn about the Definition, Syntax, Application and
Examples of range function.
The range() is a built-in function in Python that generates a sequence of numbers.
range(start, stop, step)
start , stop, and step are three parameters.
The start and step parameters are optional.
Stop is required parameter.