The following returns False.
Could someone explain why?
My understanding is
I think it is because it is chained.
For example
is false.
So back to the original expression
1 |
1 = = 2 < 3 |
My understanding is
1 2 3 4 5 6 |
1 = = ( 2 < 3 ) so 1 = = True which is the same as 1 = = 1 So True ? |
For example
1 |
1 > 3 < 4 |
So back to the original expression
1 2 3 4 5 |
( 1 = = 2 ) and ( 2 < 3 ) which is false and true which is false |