Python / turtle Flashcards

1
Q

Sequencing

A

Placing the instructions in correct order to run one after each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Iteration

A

means repeating steps, or instructions, over and over again forever
or until a condition is met.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

For Loop

A

repeats the following section of code below, for (x) times

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

import turtle

A

start drawing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

turtle.right(X)

A

turn right (x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

turtle.left(X)

A

turn left (x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

turtle.forward(X)

A

forward (x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

turtle.backward(X)

A

backwards (x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly