for i in range 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: for i in range python

#coding: utf-8

for item in range(10):
    print(item)

Example 4: for i in range python

for i in range(start, end):
  expression

Example 5: for i in range python

for elt in Liste:
  print(elt)

Example 6: for i in range python

times_repeated = 10

for i in range(1, times_repeated + 1): #1 is the starting point and times_repeated is how much times the loop with run.
  print(i) #Prints 1 2 3 4 ... 10

Tags: