This is the operator for integer division. It always returns a whole number.
What is the double slash (//) ?
This common variable type stores letters, numbers, and symbols.
What is a string?
This statement must correspond to an if statement, and must include a Boolean condition of its own.
What is an 'elif' statement?
These are the two characters (or character sequences) you can use to add comments in Python code
What is a pound sign (#) and three quotes twice (''' comment ''') ?
This operator "glues" two strings or lists together.
What is the concatenation (+) operator?
When determining order of operations in Python expressions, these characters indicate that the enclosed expression should get the highest priority.
What are parentheses?
This variable type stores decimal numbers.
What is a float?
This flow control statement takes a list or string and runs the contained code once for each element.
What is a for loop?
This commonly used Python data structure contains a collection of items referenced by a numeric index.
What is a list?
The following code prints this word.

What is 'kilogram'?
The result of 13 % 6
What is 1?
This function allows user input text to be assigned to a variable.
What is input()?
What is the value of 'x' after the following Python code has completed executing?

What is 22?
In Python, this element of a program evaluates down to a single value, but it does not (by itself) change the value of any variables.
What is an expression?
This is the function used to ensure that there are no upper case characters in a string.
What is lower()?
((5 - 2) * 3) != (19 % 10)
What is False?
A dictionary consists of a mapping between these two pieces of data.
What are keys are values?
This is the value of "num" after the following code executes:

What is 59?
These are the four main parts of a computer, other than software.
What are processor, memory/RAM, disk, and I/O?
This a boolean expression that checks whether the character 'b' is in the string my_word
What is "b in my_word"?
(2 ** 5) + ( (7 * 4) % 10 )
What is 40?
To determine the variable type of a variable, you would use this function.
What is type()?
The value of i after the following code executes:

What is 2?
This built-in Python function returns the length of many objects, including Lists.
What is len()?
In order to add a single quote to a string (which is bordered by single quotes), you will need this character
What is the escape character or forward slash (\)?