python iterate over number 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 from n to 1 in python
range(10, 0, -1)
Example 3: Range python iterate by 2
for i in range(0,10,2):
print(i)