I feel like I'm missing something simple here, but googling this bring up lots of generic results:
Comparing True to the result of x<0 returns unintuitive results (namely that True is not equal to -1<0). I assumed this must be order of operations, but neither order produces the same result.
>>>True!=-1<0
True
>>> True!=(-1<0)
False
>>> (True!=-1)<0
False
What is going on here?