Consider a = 3
.
Now, why is the result of the expression a == 3 > 1
True ?
It should be equivalent to either (a == 3) > 1
or a == (3 > 1)
. Both these expressions are False
. Then why is the first one True ?
Consider a = 3
.
Now, why is the result of the expression a == 3 > 1
True ?
It should be equivalent to either (a == 3) > 1
or a == (3 > 1)
. Both these expressions are False
. Then why is the first one True ?