Loops in Python are pieces of code that repeat multiple times.
range(start,stop,step) – this is how the forLoop loop looks in general, where start and stop describe the actual beginning and end of the loop, including the start point, but not including the end point; step – the step with which the computer moves from the start point to the end point (another step is called increment).
Example:
range(1,10,2) means 1, 3, 5, 7, 9