Answers for "loop 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
36

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
9

pytho loops

for x in loop:
	print(x)
Posted by: Guest on May-10-2020
30

python for loop

for x in (list):
  print(x)
Posted by: Guest on December-10-2019
7

loops in python

#While Loop:
while ("condition that if true the loop continues"):
  #Do whatever you want here
else: #If the while loop reaches the end do the things inside here
  #Do whatever you want here

#For Loop:
for x in range("how many times you want to run"):
  #Do whatever you want here
Posted by: Guest on September-24-2020
-1

loop python

for x in range(6):
  print(x)
Posted by: Guest on November-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language