Answers for "loops 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
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
1

loops in python

var counter = 0;
while true {
  print("Hello")
  counter += 1;
  if counter == 10 {
    break
  }
}
Posted by: Guest on September-01-2021
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

loops in python

# prints Hello Geek 3 Times
count = 0
while (count < 3):    
    count = count+1
    print("Hello Geek")
Posted by: Guest on August-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language