user64756
0
Q:

for statement in python

n = 4
for i in range(0, n): 
    print(i) 
8
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; 	
  
11
for x in (list):
  print(x)
29
for index in range(len(list)): 
    print list[index]
5
# how to use for in python for (range, lists)
fruits = ["pineapple","apple", "banana", "cherry"]
for x in fruits:
  if x == "apple":
    continue
  if x == "banana":
    break
  print(x)
# fron 2 to 30 by 3 step
for x in range(2, 30, 3):
  print(x)
8

fruits = ["apple", "banana", "cherry"]
for x in fruits:  
  print(x)
 
4

  for x in range(6):

	 
	print(x)
 
1
for x in range(6):# 6 is the number of times you want it to play for
  print(x)#This is the code what will be carryed out  
1

  fruits = ["apple", "banana", "cherry"]for 
  x in fruits:
	 
	print(x)
 
0
my_list = ["milk", "coffee", "bread"]
# i stands for iterator
for i in my_list:
  print(i) # prints every element of my_list
1

New to Communities?

Join the community