Answers for "how to create a for loop in python"

73

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
30

python for loop

for x in (list):
  print(x)
Posted by: Guest on December-10-2019
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

# Python for loop

for i in range(1, 101):
  # i is automatically equals to 0 if has no mention before
  # range(1, 101) is making the loop 100 times (range(1, 151) will make it to loop 150 times)
  print(i) # prints the number of i (equals to the loop number)
  
for x in [1, 2, 3, 4, 5]:
  # it will loop the length of the list (in that case 5 times)
  print(x) # prints the item in the index of the list that the loop is currently on
Posted by: Guest on January-09-2021
3

python for loop

for i in range(3):
  print(i)
#prints:  0,1,2
Posted by: Guest on November-11-2020
1

how to create a for loop in python

my_list = [1,2,3]
for number in my_list:
	print(number)
#outputs
#1
#2
#3
Posted by: Guest on August-31-2021
73

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
30

python for loop

for x in (list):
  print(x)
Posted by: Guest on December-10-2019
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

# Python for loop

for i in range(1, 101):
  # i is automatically equals to 0 if has no mention before
  # range(1, 101) is making the loop 100 times (range(1, 151) will make it to loop 150 times)
  print(i) # prints the number of i (equals to the loop number)
  
for x in [1, 2, 3, 4, 5]:
  # it will loop the length of the list (in that case 5 times)
  print(x) # prints the item in the index of the list that the loop is currently on
Posted by: Guest on January-09-2021
3

python for loop

for i in range(3):
  print(i)
#prints:  0,1,2
Posted by: Guest on November-11-2020
1

how to create a for loop in python

my_list = [1,2,3]
for number in my_list:
	print(number)
#outputs
#1
#2
#3
Posted by: Guest on August-31-2021

Code answers related to "how to create a for loop in python"

Python Answers by Framework

Browse Popular Code Answers by Language