for i in range(len code example
Example 1: for i in range python
#coding: utf-8
for item in range(10):
print(item)
Example 2: for i in range(n-1,0,-1):
# Print first 5 numbers using range function
for i in range(5):
print(i, end=', ')
# Output:
# 0, 1, 2, 3, 4,
Example 3: for i in range python
for i in range(start, end):
expression
Example 4: for i in range python
times_repeated = 10
for i in range(1, times_repeated + 1): #1 is the starting point and times_repeated is how much times the loop with run.
print(i) #Prints 1 2 3 4 ... 10