for i in range meaning in python code example
Example 1: python for loop range
for i in range(0, 3):
print(i)
Example 2: range(n,n) python
# if numbers are same in the range function then,
# the range function outputs empty range
# this is because, there are no integers b/w n and n
for i in range(1,1):
print("runs")
# prints nothing
Example 3: 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