python for from 1 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: python for loop
for i in range(3):
print(i)
#prints: 0,1,2
Example 3: how to print a number at the end of a for loop in python
for i in range(1,4):
if i == 3:
print(i)