for loop that repeats a number python code example
Example 1: how to print a number at the end of a for loop in python
for i in range(1,4):
if i == 3:
print(i)
Example 2: python repet x time
for i in range(50):
print "Some thing"
for i in range(1,4):
if i == 3:
print(i)
for i in range(50):
print "Some thing"