If-Statements & Loops
Variables
Printing & Inputs
Libraries

Misc
100

Checks if a condition is true then runs the code inside.

What is an if-statement?

100

A container, represented by a brief phrase, which can hold any value or object.

What is a variable?

100

The method that lets you print text or variables to the console in Python.

What is print()?

100

The keyword used to import a library in python.

What is "import"?

100

The symbol used to create a comment in python.

What is #?

200

A loop which repeats a set amount of times.

What is a for loop?

200

A letter, word, or phrase surrounded by quotation marks ("")

What is a String?

200

The method that allows the user to input some value and assign the input to a variable.

What is input()?

200

The line of code that allows you to call a random integer number from within a set range of values.

What is random.randint(min,max)?

200

The word to check if two conditions are true in an if-statement.

What is "and"?

300

A loop that repeats until a condition is no longer true

What is a while loop?
300

A variable type that is binary (can either be True or False and nothing else)

What is a boolean?

300

The name of the location where the text from print() and input() is displayed.

What is the console?

300
The way to create a new Turtle and assign it to a variable.
What is "var = turtle.Turtle()"?
300

The correct way to react if a cyberbully tries to target you online.

What is blocking and reporting?

400

Secondary conditional linked to an if-statement that the program runs if the first check was false.

What is elif:?

400

The set of characters to check if two values are equal to each other.

What is ==?

400

The set of characters to make a string automatically go to the next line.

What is \n?

400

The shorthand for turtle.forward()

What is turtle.fd()?

400

The symbols to divide two values and round the answer to a whole number (no decimal places).

What is //?

500
A while loop followed by the condition "True"

What is a forever loop?

500

The method to convert an integer number value to a string

What is str()?

500

The library that enables the use of cprint()

What is termcolor?

500

The line of code used to clear all text in the console.

os.system('clear')

500

The place you can find the documentation for any method or program, the solution to (nearly) any problem, and helpful examples for code.

What is the internet/google?