- #1
Bipolarity
- 776
- 2
print(1!=0==0) seems to print the value 'True'. I'm trying to understand why.
Does it first evaluate (1!=0) ?
Or does it first evaluate (0==0) ?
Or does it separate them into (1!=0)^(0==0) ?
I appreciate all help.
BiP
Does it first evaluate (1!=0) ?
Or does it first evaluate (0==0) ?
Or does it separate them into (1!=0)^(0==0) ?
I appreciate all help.
BiP