(8 == 8) or (8 == 9) and (8 == 6) Out[24]: True
(9 == 0) or (8 == 8) and (7 == 9) Out[25]: False
i expected to be the same boolean output which is both false because the computer will evaluate expression from left to the right.
Thank You!
(8 == 8) or (8 == 9) and (8 == 6) Out[24]: True
(9 == 0) or (8 == 8) and (7 == 9) Out[25]: False
i expected to be the same boolean output which is both false because the computer will evaluate expression from left to the right.
Thank You!