+ 1
Which has precedence?
if you code print(False or True), or even, print(True or False) then it prints "True" every time. Why is that?
1 ответ
+ 10
OR is True if ANY of its arguments is True
AND is True if ALL its arguments are True
if you code print(False or True), or even, print(True or False) then it prints "True" every time. Why is that?