Basic Math
Variables
General Python
100
This character denotes the division operator.
What is the forward slash (/) ?
100
This common variable type stores letters, numbers, and symbols.
What is a string?
100
To comment a line in Python, you use this/these character(s).
What is a pound sign (#) ?
200
These characters have the highest order of operation in Python.
What are parenthesis?
200
This variable type stores decimal numbers.
What is a float?
200
This commonly used Python data structure contains a collection of items referenced by a numeric index.
What is a list?
300
To raise the number 5 to the power of 8, you must use the power operator. This/These symbol(s) denote the power operator.
What are two asterisks (**) ?
300
Data stored as a string is surrounded by these.
What are quotes?
300
Python will warn on a logic error, but it will warn (and possibly error) on this type of error.
What is a syntax error?
400
Denoted as '%', this operator returns the remainder of a division operation.
What is the modulus?
400
To determine the variable type of a variable, you would use this function.
What is type()?
400
This built-in Python function returns the length of many objects, including Lists.
What is len()?
M
e
n
u