Answers for "for loops in functions python"

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

For Loop in Python

for i in range(start, stop, step):
    # statement 1
    # statement 2
    # etc
Posted by: Guest on May-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language