Answers for "for i in python"

74

python loops

#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
  print(x)
Posted by: Guest on January-19-2020
37

for loop python

Python Loops

for x in range(1, 80, 2):
  print(x)

words=['zero','one','two']
for operator, word in enumerate(words):
	print(word, operator)

for x in range(1, 80, 2):
  print(x)
Posted by: Guest on April-07-2020
2

python for loop

for x in range(10):
	print(x)
// output: 1,2,3,...,10
    
for x in range(10, 20, 2):
	print(x)
// output: 10, 12, 14, 16, 18, 20

list = [2, 3, "el"]
for x in list:
	print(x)
// output: 2, 3, "el"
Posted by: Guest on September-28-2021
1

for loop in python

# print (Hello !) 5 Times.
#(i) it's a name For Variable So You Can Replace it with any name.
for i in range(5):
print("Hello !")
Posted by: Guest on October-22-2021
17

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;
Posted by: Guest on May-18-2020
3

python for loop

for i in range(5):
	print(i) #0, 1, 2, 3, 4
for i in range(2, 8):
  	print(i) #2, 3, 4, 5, 6, 7, 8
for i in range(2, 10, 2):
  	print(i) #2, 4, 6, 8, 10
for i in (['a', 'b', 'c']):
  print(i) #a, b, c
Posted by: Guest on December-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language