Basic Math
The keyword used to define a function in Python.
What is def?
This variable type stores decimal numbers.
What is a float?
This statement exits a function and optionally returns a value.
What is return?
This function allows user input text to be assigned to a variable.
What is input()?
The Boolean operator that returns True only if both inputs are True
What is AND?
The Python operator for logical negation (e.g., not False becomes True).
What is not?
Data type representing values like True or False
What is bool?
De Morgan’s Law states that not (A and B) is equivalent to this expression.
What is (not A) or (not B)?