This data type is used to represent text.
What is strings?
The error when a stated fact is not True.
What is AssertionError?
The answer to 5 + -8.
What is -3.
This built-in function displays an output to the console/prompt/terminal/screen.
What is print()?
The keyword for whole numbers.
What is int?
This data type represents whole numbers.
What is integers?
The error that is raised from this computation: "apple" / 3.
What is TypeError?
The answer to 19 // 4.
What is 4?
This built in function takes a user's input and assigns it to a variable.
What is input()?
The keyword for text.
What is str?
This data type represents decimals and fractions.
What is float?
The error that is raised when you write incorrect Python.
What is SyntaxError?
If 'num' is some integer, the expression to determine if 'num' is even/odd.
What is num % 2?
The two characters that are used when creating a string.
What is ' and "?
The key word for binary True/False.
What is bool?
This data type represents either True or False.
What is a boolean?
The error that is raised when you use a variable you did not define.
What is NameError?
The result of ("happy" * 5) + "birthday".
What is happyhappyhappyhappyhappybirthday?
The formatting method that uses a % sign along with specifiers to substitute variables into strings.
"My name is %s" % (name)
What is C-Style Formatting?
The key word for decimals and fractions.
What is float?
This data type represents emptiness or void of type.
What is None?
The error that is raised from this computation. 10 / 0.
What is ZeroDivisionError?
The result of 38.5 % (15 // 7)
What is 0.5?
The formatting method that uses brackets to substitute variables into strings.
f"My name is {name}"
What is F-Strings?
The keyword for empty or null.
What is None?