bool() --> convert a data type into a Bolean value
True --> Boolean data type. On switch (declares something is truth)
False --> Boolean data type. Off switch (declares something is false)
and --> Operator. Produces True if ALL operands are true, else False
or --> Operator. Produces True if ANY operands are true, else False
not --> Operator. Produces inverse Boolean (not True == False)
== --> Operator. Does equal (5 ==3)
!= --> Operator. Does not equal (5 !=3)
>= --> Operator. Greater than OR equal to (4 >=3)
<= --> Operator. Less than OR equal to (2 <=3)