Datatypes
The thing that must surround any line of text in order for it to become a string
What are quotation marks?
The symbol for multiplication in Python
What is *?
The difference between ints and floats
What are decimals?
The symbol for raising a number to any power
What is **?
The basic definition of booleans
What is True or False?
The result of 2**2/2
What is 2?
The function used to show the total number of characters (including spaces) in a string
What is len()?
The purpose of the % sign in Python
What is finding the remainder?
The structure of string concatenation
What is string - variable - string ... ?
What is += and -= equivalent to?
x = x + some number
x = x - some number