Input/Output
Variables
Math Operations
Loops
100

This is the name of the function that gets information from the user.

What is input()?

100

This is the type we use to keep count of the amount of computers in the room.

What is an integer?

100

A common math operator, also used to concatenate strings.

What is a +?

100

These are the two kinds of loops in python.

What are while and for?

200

This is the name of the function that give information to the user?

What is print()?

200

This is the type we use when keeping track of the state of the lights in the room (on/off).

What is a boolean?

200

This operation is written as / for regular and // for integers.

What is division?

200

This is what happens when a loop runs forever.

What is an infinite loop?

300

This is the default return type for the input() function.

What is a string?

300

This is the type we use to keep track of the name of the room.

What is a string?

300

One of these denotes multiplication, two shows exponentiation.

What is a *?

300

This type of loop requires a condition.

What is the while loop?

400

These are the types that can be outputted using the print() function.

What are all types.

400

This is the type we use to keep track of the temperature in the room.

What is a float?

400

Binary this is subtraction, unary is negation.

What is a -?

400

This kind of loop usually requires the range() function.

What is the for loop?

500

This is the issue caused by trying to execute "My age is " + 18.

What is adding a string to an integer?

500

These variables are often written using ALL CAPS.

What is a constant?

500

When dividing two numbers, this operator shows you what remains.

What is the modulus (%)?

500

This is the name we give to loops inside of loops.

What are nested loops?