Mathematical Operators
Variables
Decision Making
User input and data types
Turtle
100

The correct way of writing exponents in Python

a**b

100

This operator is used to define a variable

The assignment operator

100

These structures are used for decision making in programs

Selection structures

100

By default the input command assumes all variables are this data type

string

100

This is the correct way to create a screen in Turtle

turtle.Screen()

200

This operator divides two numbers and returns the remainder

The modulus operator %

200

This data type stores whole numbers

integer

200

This type of operator is used to compare two values

Relational

200

This command allows the user to provide input

input

200

This command is used to tell your turtle to stop drawing

penup()
300

If y = 3 and z = 7, the value of 


y != z and z <= 5

False

300

These are not allowed in variable names

Spaces or special characters

300

These are the logical operators

and, or, not

300

This type of program allows a user to provide user input

dynamic

300

This method will instantly move your turtle to another part of the screen

goto

400

If x = 25 and y = 48, the value of


x <= 50 or y >= 100

True

400

This term is used to describe turning a variable from one data type to another

typecast

400

You have an if/elif/else statement and three of the statements are true. 

The program will execute this many of them.

One

400

You must do this when combining a number and a string in the same print statement

Convert the number to a string

400
These are three valid shapes for turtle

Turtle, Circle, Arrow, Square, Triangle, classic 

500

The value of 10//3

3

500

These are allowed at the start of variable names

Letters and underscores

500
This is the correct syntax for writing "if a is between 5 and 10" in an if statement

if a > 5 and a < 10:

500

This term is used to describe combining multiple values together in a print statement

concatenate

500

This command is used to clear your screen and move the turtle back to the starting location

reset