Someone explain me how to know if its true or false by precedence ...I don't get the logic here... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Someone explain me how to know if its true or false by precedence ...I don't get the logic here...

https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2280/

30th Jun 2018, 8:22 AM
Deesha Devi Raghu
Deesha Devi Raghu - avatar
2 Answers
+ 2
The == ignores the OR, so at the first one it is like False == False, which is true. The second one: False == (False or True), the () give preference. The last one: (False == False) or True, the () give preference and the == ignores the OR, so, as false is the same as false, it is true. I don't know if you could understand but my english is really bad. Hope I helped you in some way.
30th Jun 2018, 8:31 AM
Jishu๐ŸŽ—๐Ÿ’›
Jishu๐ŸŽ—๐Ÿ’› - avatar
30th Jun 2018, 8:55 AM
Maninder $ingh
Maninder $ingh - avatar