Hello my question is a very simple question, I have these two expressions and let me analyze them to see if I do it correctly:
False or not (True and True)
False
In this first expression following the recommended order, I first analyze not and I have to compare it with the result of the two operators in parentheses True and True that would be True, so not True is False, and finally I compare it with or, would be False or False is False.
The doubt is in this:
not not True or False and not True
False
I'm noticing True, not True is False, not False is True, not True is False, True and False is False and False or False is False.
The question is why the second one in the Python console gives me True. Thanks