This is the name of the function that gets information from the user.
What is input()?
This is the type we use to keep count of the amount of computers in the room.
What is an integer?
A common math operator, also used to concatenate strings.
What is a +?
These are the two kinds of loops in python.
What are while and for?
This is the name of the function that give information to the user?
What is print()?
This is the type we use when keeping track of the state of the lights in the room (on/off).
What is a boolean?
This operation is written as / for regular and // for integers.
What is division?
This is what happens when a loop runs forever.
What is an infinite loop?
This is the default return type for the input() function.
What is a string?
This is the type we use to keep track of the name of the room.
What is a string?
One of these denotes multiplication, two shows exponentiation.
What is a *?
This type of loop requires a condition.
What is the while loop?
These are the types that can be outputted using the print() function.
What are all types.
This is the type we use to keep track of the temperature in the room.
What is a float?
Binary this is subtraction, unary is negation.
What is a -?
This kind of loop usually requires the range() function.
What is the for loop?
This is the issue caused by trying to execute "My age is " + 18.
What is adding a string to an integer?
These variables are often written using ALL CAPS.
What is a constant?
When dividing two numbers, this operator shows you what remains.
What is the modulus (%)?
This is the name we give to loops inside of loops.
What are nested loops?