Predict

Predict, the first stage of the PRIMM model.

As mentioned, the Predict stage is designed for students to discuss a program & predict what it might do

Let's try it firsthand by reading the code and predicting what may happen.

Example 1

Take a look at the following code created using turtle python.

forward(50)
left(90)
forward(100)
left(90)
forward(50)
left(90)
forward(100)
left(90)

Last updated