+ 1
print(False == (False or True))
what is meant by this
2 Respostas
+ 4
It means according to the precedence of operator, the given expression executes.
1. False or true will evaluate because they are inside a parentheses. The result will be true.
2. Then False==True will be evaluated and results False.
+ 1
thank u bro