Python / turtle Flashcards
1
Q
Sequencing
A
Placing the instructions in correct order to run one after each other.
2
Q
Iteration
A
means repeating steps, or instructions, over and over again forever
or until a condition is met.
3
Q
For Loop
A
repeats the following section of code below, for (x) times
4
Q
import turtle
A
start drawing
5
Q
turtle.right(X)
A
turn right (x)
6
Q
turtle.left(X)
A
turn left (x)
7
Q
turtle.forward(X)
A
forward (x)
8
Q
turtle.backward(X)
A
backwards (x)