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

python for loop

# defining initial variables
num1 = 1
num2 = 10
# Using range() for the looping
for i in range(num1, num2):
  	# printing iterated variable
    print(i)

# Using for loop to print data in dictionary
varname = [1,2,3,4]
for x in varname:
    print(a)
    
# printing double lists with help of zip
lz1 = ["a", "b", "c"]
lz2 = [1, 2, 3]

#print two list with the help of zip function
for y,z in zip(lz1,lz2):
    print(y,z)
Posted by: Guest on December-30-2020

Code answers related to "loop program in python"

Python Answers by Framework

Browse Popular Code Answers by Language