how to create loops in python code example
Example 1: pytho loops
for x in loop:
print(x)
Example 2: python loops
#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
print(x)
Example 3: 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 4: for loop in python
for x in range(6):
print(x)
Example 5: how to make a loop in python
x = 0
while True: #execute forever
x = x + 1
print(x)