I was learning about the precedence of operators and I came across this:
">,>= are binary operators with left-sided binding, and their priority is greater than that shown by == and !=."
To verify I wrote the following statement
print(False==0<0)
Output: False
But 0<0 gives False and False==False should give True.
Could you tell me where am I going wrong?