Introduction

In Python (and in most programming languages), there are two types of iteration:

  1. definite iteration (for-loop)–when we know exactly how many iterations we need
  2. indefinite iteration (while loop)–when we don’t know how many iterations we need or the number of iterations varies

To demonstrate the differences, let’s write a function called sum_to that adds all the whole numbers up to a given number. First, let’s use a for-loop to write this function:

def sum_to(end_number):
    answer  = 0
    for number in range(1, end_number + 1):
        answer = answer + number
    return answer

print(sum_to(4))

print(sum_to(1000))

Now, let’s us a while-loop to write the same sum_to function. Before we begin, there are a few things we need to know about while-loops.

A while loop uses a Boolean condition in the loop statement. If the condition is true, the loop body executes once, then tests the condition again before repeating the loop body. If the condition is False at any point, the loop ends and the program continues on.

The way a while loop works has two important implications for our programming: 1. The while loop tests conditions only at beginning of loop and so executes the entire loop even if the condition becomes false halfway through the loop 2. We hae to beware of accidentally creating an infinite loop: when the condition never becomes false, we enter an infinite loop. The program will never end until force-ended or the power goes out.

def sum_to(end_number):
    answer  = 0
    number = 1
    while number <= end_number:
        answer = answer + number
        number = number + 1
    return answer

print(sum_to(4))

print(sum_to(1000))

In-Class Activity: Randomly Walking Turtles

Suppose we want to entertain ourselves by watching a turtle wander around randomly inside the screen. When we run the program we want the turtle and program to behave in the following way:

  1. The turtle begins in the center of the screen.
  2. Flip a coin. If it’s heads then turn to the left 90 degrees. If it’s tails then turn to the right 90 degrees.
  3. Take 50 steps forward.
  4. If the turtle has moved outside the screen then stop, otherwise go back to step 2 and repeat.

Notice that we cannot predict how many times the turtle will need to flip the coin before it wanders out of the screen, so we can’t use a for loop in this case. In fact, although very unlikely, this program might never end, that is why we call this indefinite iteration.

Since this is our second program using a while loop, let’s begin by writing some pseudocode:

create a window and a turtle

while the turtle is still in the window:
    generate a random number between 1 and 2
    if the number == 1 (heads):
        turn left
    else:
        turn right
    move the turtle forward 50

The hardest part of this program is testing if the turle is still in the window. Let’s hold off on that part until everything else is working correctly. We still need to create a function for this test, but we can modify its functionality a bit:

import turtle, random

def is_screen(window,turtle):
    if random.random() >.1:
	    still_in = True
    else:
      still_in = False

    return still_in

bob = turtle.Turtle()
wn = turtle.Screen()

bob.shape('turtle')
while is_screen(wn,bob):
    coin = random.randint(1, 2)
    if coin == 1:
        bob.left(90)
    else:
        bob.right(90)

    bob.forward(50)

wn.exitonclick()

Now, let’s adjust our is_screen function so it operates as expected. To do this, we will use some code we employed in Project 5, the window_width() and window_height() functions from the Turtle module.

import turtle, random

def is_screen(window,turtle):
    left_edge = - window.window_width() // 2
    right_edge = window.window_width() // 2
    top_edge = window.window_height() // 2
    bottom_edge = -window.window_height() // 2

    turtle_x = turtle.xcor()
    turtle_y = turtle.ycor()

    still_in = True
    if turtle_x > right_edge or turtle_x < left_edge:
        stillIn = False
    if turtle_y > top_edge or turtle_y < bottom_edge:
        still_in = False

    return still_in

bob = turtle.Turtle()
wn = turtle.Screen()

bob.shape('turtle')
while is_screen(wn,bob):
    coin = random.randint(1, 2)
    if coin == 1:
        bob.left(90)
    else:
        bob.right(90)

    bob.forward(50)

wn.exitonclick()

Exercise:

  • Modify the randomly walking turtle so that it moves 20 pixels at a time and can produce a grid of equilateral triangles instead of squares.
  • Enhance the program in other creative ways.