False or True or False | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

False or True or False

Hello, I tried these following statements: print(False == False or True) # Result is True print(False == True or False) # Result is False ??? print(False == True or False or True) # Result is True ?? Why turns the 3rd Result to "True" when I add another ".. or True"? How can these statements make any sense at all and what could they used for? "==" is higher than "or", so what ist this "or" for?

21st Feb 2017, 12:22 PM
Larsen-O
3 Answers
+ 4
is like having (a) or (b) or (c) so either if a, b,c or more than one of these is true the result would be true, if it was (a) and (b) and (c) a,b and c must be true for the result to be true
21st Feb 2017, 12:59 PM
C.E.
C.E. - avatar
+ 4
Condition1 OR condition2 is True if at least one condition is True. Condition1 AND condition2 is True if all conditions are True; so, if at least one condition is False, the result is False: the contrary of OR.
21st Feb 2017, 1:18 PM
visph
visph - avatar
+ 3
the second one: False ==True? No or False? No, so non of the options are true so it's false Third one: same but or True? Yes, because or means if one of the terms in the expression is true (or more) the result is true
21st Feb 2017, 12:57 PM
C.E.
C.E. - avatar