what is i in for loop python code example
Example 1: python for loop
for i in range(range_start, range_end):
#do stuff here
print(1)
Example 2: 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)