Answers for "loop code 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
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
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
2

python for loop

for num in range(5):	# range(5) generates numbers from 0 to 4(inclusive)
  print(num)			# for each iteration num has value assigned by range function
Posted by: Guest on November-01-2020
0

how do i make a for loop in python

for i in range(0, 10):
  #do stuff
  pass
Posted by: Guest on September-23-2020
1

python for loop

for item in ['mosh','john','sarah']:
    print(item)
Posted by: Guest on November-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language