python - range from 1 to len code example
Example 1: Range python iterate by 2
for i in range(0,10,2):
print(i)
Example 2: 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=', ')