make a python script loop 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: how to make loop python
loop = True #make variable loop
while loop: #makes the loop
print('Loop Worked')#this is your script for the loop