Answers for "python looping"

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
9

python for loop

#to print number from 1 to 10
for i in range(1,11):
    print(i)

#to print a list
l = [1,2,3,4]
for i in l:
    print(i)

r = ["a","b","c","d","e"]
s = [1,2,3,4,5]

#print two list with the help of zip function
for p,q in zip(r,s):
    print(p,q)
Posted by: Guest on December-04-2020
2

python for loop

for i in range(range_start, range_end):
  #do stuff here
  print(1)
Posted by: Guest on January-22-2021
1

how to use a for loop in python

a_list = [1,2,3,4,5]

#this loops through each element in the list and sets it equal to x
for x in a_list:
	print(x)
Posted by: Guest on September-19-2020
0

python for loop

#an object to iterate over 
items = ["Item1", "Item2", "Item3", "Item4"]

#for loop using range  
for i in range(len(items)):
  	print(items[i])
    
#for loop w/o using range    
for item in items:
  	print(item)
Posted by: Guest on November-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language