Lesson4 (13/22)

More Advanced Boolean Expressions

You can combine the operators "Not", "And" and "Or" in
the same boolean expression, using the parentheses "(" and ")"

For example:

(True And False) Or (Not False) = True

(True And False) Or (Not False)  
 
False Or True  
 

TRUE