Answers for "types of for loops in python"

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
0

different types f python loops

#loopies hehe
for x in range(10): #for loops.
  print("For loop")
while True: #while loop.
  print("While loop")
Posted by: Guest on October-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language