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

python for loop range

for i in range(0, 3):
    print(i)
Posted by: Guest on January-10-2020
7

python for loop

nums = ['one', 'two', 'three']
for elem in nums:
  print(elem)
Posted by: Guest on April-25-2020
1

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"

for _ in range(10):
  print("a");
// Do the loop without using index
Posted by: Guest on November-10-2020
0

python loop

# Python program to illustrate
# while loop
count = 0
while (count < 3):   
    count = count + 1
    print("Hello Geek")
Posted by: Guest on August-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language