what are the start and end values of a for loop python code example
Example 1: how to add for loop in python
for i in range(1,2,3): #you can change 1,2,3
print(i)
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)