Answers for "how to loop code 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
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
3

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)
Posted by: Guest on October-25-2020
1

python for loop

# defining initial variables
num1 = 1
num2 = 10
# Using range() for the looping
for i in range(num1, num2):
  	# printing iterated variable
    print(i)

# Using for loop to print data in dictionary
varname = [1,2,3,4]
for x in varname:
    print(a)
    
# printing double lists with help of zip
lz1 = ["a", "b", "c"]
lz2 = [1, 2, 3]

#print two list with the help of zip function
for y,z in zip(lz1,lz2):
    print(y,z)
Posted by: Guest on December-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language