simple for loop 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: for loop python
Python Loops
for x in range(1, 80, 2):
print(x)
words=['zero','one','two']
for operator, word in enumerate(words):
print(word, operator)
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: python for loop
for i in range(5, 9):
print(i)
Example 5: python for loop
words=['zero','one','two']
for operator, word in enumerate(words):
print(word, operator)
Example 6: how to make loops in python
for x in range(0, 3):
print("We're on time %d" % (x))