As expressions are executed left to right but when I execute this given double equality it gives me false but it should be True if executed left to right.
print(1<0<1)
left to right it should be executed like this.
# 1<0 = False(0),
then
# 0<1 = True(1)
so the expression becomes True and I get False.