Answers for "create for loops in python algorithm"

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
0

how to make loops in python

for x in range(0, 3):
    print("We're on time %d" % (x))
Posted by: Guest on July-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language