Boolean
A binary value hat has only two possible states, either True or False
One of the fundamental types in Python
Conditional expression
Expression that compares values using conditional operators and evaluates to a Boolean
Boolean expression
An expression that combines Boolean operands and operators which evaluates to a Boolean
De Morgan’s theorem
not(A or B)= not A and not B
not(A and B) = not A or not B