not 1==2 or 3==3 and 5==6
How is this evaluated? I know the order is not, and, or (strongest to weakest)
so if i do the not first, are these the steps:
not 1==2 or 3==3
which equates toFalse
- then
False
andFalse
equates toFalse
But I'm confused because the order is not, and, or
So why do I do the or first before the and?