for range code example

Example 1: python for loop range

for i in range(0, 3):
    print(i)

Example 2: 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 3: for i in range start

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

Example 4: for i in range python

#coding: utf-8

for item in range(10):
    print(item)

Example 5: for loop from n to 1 in python

range(10, 0, -1)

Example 6: Range python iterate by 2

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