Answers for "For loop in python is"

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

a = 10 
for i in range(1, 10) # the code will move from the range from 1 to 10 but not including 10
	print(i)
Posted by: Guest on January-17-2021
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
11

for in python

# how to use for in python for (range, lists)
fruits = ["pineapple","apple", "banana", "cherry"]
for x in fruits:
  if x == "apple":
    continue
  if x == "banana":
    break
  print(x)
# fron 2 to 30 by 3 step
for x in range(2, 30, 3):
  print(x)
Posted by: Guest on March-26-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language