Loops#

If you want code to be executed repeatedly, you can make use of loops.

See also

For loops#

For looping over a range of numbers, we can use the for loop and the range function. Ranges work like addressing values in arrays: range(start, stop, step).

In the following cell, the print(i) command will be executed a couple of times for different values of i. We iterate over a range of values:

for i in range(0, 5):
    print(i)
0
1
2
3
4

Note that the above code that is indented will only be excuted for the first given number (0) and continue until the last number (5) but not including it.

You can also loop over a range of numbers with a defined step, for example step 3:

for i in range(0, 10, 3):
    print(i)
0
3
6
9

Iterating over arrays allows you to do something with all array elements:

for animal in ["Dog", "Cat", "Mouse"]:
    print(animal)
Dog
Cat
Mouse

If you want to know the index of the element in the list as well, us the enumerate function:

# numbering and iterating through collections
for index, animal in enumerate(["Dog", "Cat", "Mouse"]):
    print(
        "The animal number",
        index, 
        "in the list is", 
        animal)
The animal number 0 in the list is Dog
The animal number 1 in the list is Cat
The animal number 2 in the list is Mouse

Generating lists in loops#

On can generate lists using for loops. The conventional way of doing this involves multiple lines of code:

# we start with an empty list
numbers = []

# and add elements
for i in range(0, 5):
    numbers.append(i * 2)
    
print(numbers)
[0, 2, 4, 6, 8]

The conventional combination involving an if-statements looks like this:

# we start with an empty list
numbers = []

# and add elements
for i in range(0, 5):
    # check if the number is odd
    if i % 2:
        numbers.append(i * 2)
    
print(numbers)
[2, 6]

While loops#

Another way of looping is using the while loop. It works by checking a condition, similar to the if statement. It will interrupt execution as soon as the condition is no longer true:

number = 1024

while (number > 1):
    number = number / 2
    print(number)
512.0
256.0
128.0
64.0
32.0
16.0
8.0
4.0
2.0
1.0

Interrupting loops#

You can interrupt loops at specific points in your code using the break command:

number = 1024

while (True):
    number = number / 2
    print(number)
    
    if number < 1:
        break;
512.0
256.0
128.0
64.0
32.0
16.0
8.0
4.0
2.0
1.0
0.5
for i in range(10):
    print(i)
    if i > 5:
        break
0
1
2
3
4
5
6

Skipping iterations in loops#

If you want to skip iterations, you can use the continue statement. That often makes sense in combination with an if:

for i in range(0, 10):
    if i >= 3 and i <= 6:
        continue
    print(i)
0
1
2
7
8
9

Exercise 1#

Assume you have a list of filenames and you want to do something with them, for example print them out. Program a for loop which prints out all file names which end with “tif”.

file_names = ['dataset1.tif', 'dataset2.tif', 'summary.csv', 'readme.md', 'blobs.tif']

Exercise 2#

Write a for-loop that sums all numbers between 0 and 100, excluding 100.

Exercise 3#

Modify the following code so that the loop fills the array with the first 10 Fibonaaci numbers.

fibonnaci_numbers = [0, 1]

while len(fibonnaci_numbers) < 10: