what are for loops used for in python code example
Example 1: 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)
Example 2: for loop python
iteration_number = 10 # can be any amount or how many times you want to iterate
for iteration in range(iteration_number): # how many iterations - iteration_number variable
print(iteration)