python3 for range code example

Example 1: range python 3

# range(start, stop, step)
  # start = index to begin at (INCLUSIVE)
  # stop = generate numbers up to, but not including this number (EXCLUSIVE)
  # step = (can be omitted) difference between each number in the sequence

arr = [19,5,3,22,13]

# range(stop)
for i in range(len(arr)):
    print(arr[i]) # prints: 19, 5, 3, 22, 13

# range(start, stop)
for i in range(2, len(arr)):
    print(arr[i]) # prints: 3, 22, 13
    
# range(start, stop, step)
for i in range(0, len(arr), 2):
    print(arr[i]) # prints: 19, 3, 13
    
# reverse:
for i in range(len(arr)-1, -1, -1):
    print(arr[i])

Example 2: Range python iterate by 2

for i in range(0,10,2):
  print(i)

Example 3: range py

range(start, stop, step)
 
x = range(0,6)
for n in x:
print(n)
>0
>1
>2
>3
>4
>5

Example 4: in range python

for i in range(x) #[0;x[

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