This character is the division operator.
What is the forward slash (/) ?
This common variable type stores letters, numbers, and symbols.
BONUS POINTS: What symbols go around a string?
What is a string?
BONUS ANSWER: Quotation marks " " or ' '
These characters have the highest order of operation in Python.
What are parenthesis?
This variable type stores decimal numbers.
What is a float?
The result of 9 // 5
What is 1?
What keyword do we use to get an information from the user?
Identify the letters printed from these lines of code: words = "GIS Rules!" print words[1:4]
What is 'GIS Rules'?
To raise the number 5 to the power of 8, you must use the exponent operator. This symbol is the power operator.
What are two asterisks (**) ?
The way that we convert a data type to a string is...
What is str()?
OR
What is format()?
This built-in Python function returns the length of whatever item is inside of the parentheses.
What is len()?
This function returns a string with one word switched out for another word.
What is replace()?
Shown as '%', this operator returns the remainder of a division operation.
What is the modulus?
The name of taking two strings and combining them with a "+".
What is concatenation?
This is an error caused when the rules of Python are not followed.
What is a syntax error?
This string method returns a string that has been combined with an integer without needing to be converted using str().
What is format()?