for loop syntax in Python code example

Example 1: pytho loops

for x in loop:
	print(x)

Example 2: python loops

#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
  print(x)

Example 3: python for loop

for x in (list):
  print(x)

Example 4: python for loop

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

Example 5: 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 6: python loop

# A loop is used to iterate over a sequence
# The format of a loop is
for variable in object:
  pass

# A common use of a for loop is using the range() function
for num in range(1, 10):
  print(num)
  
# It can also be used with a list
new_list = ["Number 1", "Number 2", "Number 3", "Number 4"]
for x in new_list:
  print(x)