To know the opposite boolean value for something:
The not Operation
>>> not True
False
>>> not False True
The or Operation
>>> True or True
True
>>> True or False
True
>>> False or False
False
>>> False or True True
With or operand how many values do we need to be Ture to return a True?
Only 1
>>> True or True
True
>>> True or False
True
Wiht the or operand what is the one time you will get a False?
>>> False or False
False
The and operator is the opposite of?
Or operand
For the and operator how many operands need to be true?
Both
>>> True and True
True
List all False for and Operation:
>>> True and False
False
>>> False and False
False
>>> False and True
False