for loop example python

Example 1: pytho loops

for x in loop:
	print(x)

Example 2: python for loop

for i in range(range_start, range_end):
  #do stuff here
  print(1)

Example 3: for in python

for i in range(1,10,2): #(initial,final but not included,gap)
  print(i); 
  #output: 1,3,5,7,9
  
for i in range (1,4): # (initial, final but not included)
  print(i);
  #output: 1,2,3 note: 4 not included

for i in range (5):
  print (i);
  #output: 0,1,2,3,4 note: 5 not included

python = ["ml","ai","dl"];  
for i in python:
  print(i);
  #output:  ml,ai,dl
  
for i in range(1,5):	#empty loop...if pass not used then it will return error
  pass;

Example 4: how to use for loops python

#simple for loop to print numbers 1-99 inclusive
for i in range(1,100):
  print(i)
  
#simple for loop to loop through a list
fruits = ["apple","peach","banana"]
for fruit in fruits:
  print(fruit)

Example 5: how to make loop python

loop = True #make variable loop
while loop: #makes the loop
  print('Loop Worked')#this is your script for the loop

Example 6: python for loop

a = 10 
for i in range(1, 10) # the code will move from the range from 1 to 10 but not including 10
	print(i)