0
Explain operator precedence?
print(False == False or True) print(False == (False or True)) print((False == False) or True)
2 Answers
+ 5
https://docs.python.org/3/reference/expressions.html#operator-precedence
You should read the docs more often.
0
hi
refer to this article
https://www.tutorialspoint.com/JUMP_LINK__&&__python__&&__JUMP_LINK/operators_precedence_example.htm