py for python code example
Example 1: for pyton
for i in range(n):
#instruction
# other instruction out of the loop
Example 2: pyton for
for x in range(6):
print(x)
for i in range(n):
#instruction
# other instruction out of the loop
for x in range(6):
print(x)