python for val in range code example

Example 1: how to iterate through range in python

for i in range(start, end):
    dosomething()
#The i is an iteration variable that you can replace by anytthing. You do not need to define it.

Example 2: for in range loop python

#there are two possibilities for a for loop
#first one is with a range()
#range() just generates lists after the following pattern

print(range(4))
>>> [0,1,2,3]
print(range(1,4))
>>> [1,2,3]
print(range(2,10,2))
>>> [2,4,6,8]

#and what the for does then is that it lets a variable (in my example x) cycle trough the list given after in

for x in range(2,10,2):
  print(x)
>>> 2
>>> 4
>>> 6
>>> 8

#so the code in the loop gets executed for every value in the given list after in
#you can also use for ... in for custom lists
#example 1:

list1 = [1,2,50,2]

for x in list1:
  print(x)

>>> 1
>>> 2
>>> 50
>>> 2

#example 2

list2 = ["bananas", "apples", "pears"]

for x in list2:
  print(x)

>>> "bananas"
>>> "apples"
>>> "pears"

Example 3: range python start at 1

>>> def range1(start, end):
...     return range(start, end+1)
...
>>> range1(1, 10)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

Example 4: 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