python range function parameters code example
Example 1: for i in range start
for i in range([start], stop[, step])
Example 2: range in python
#range(start,stop,step)
for x in range(0,20,2):
print(x)
Example 3: python range in intervals of 10
print("using start, stop, and step arguments in Python range() function")
print("Printing All odd numbers between 1 and 10 using range()")
for i in range(1, 10, 2):
print(i, end=', ')
Example 4: range in python
for i in range (start, step, stop):
dosomething()