for i range code example

Example 1: how to iterate through range in python

for i in range(start, end):
    dosomething()
#The i is an iteration variable that you can replace by anytthing. You do not need to define it.

Example 2: for i in range start

for i in range([start], stop[, step])

Example 3: Range python iterate by 2

for i in range(0,10,2):
  print(i)

Example 4: 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 5: for i in range python

for elt in Liste:
  print(elt)