for loops i python code example
Example 1: python loops
#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
print(x)
Example 2: pytho loops
for x in loop:
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: python for loop
words=['zero','one','two']
for operator, word in enumerate(words):
print(word, operator)