Operator Python Tutorial

print 3 < 4 < 7           # same as ( 3 < 4 ) and ( 4 < 7 )
print 4 > 3 == 3          # same as ( 4 > 3 ) and ( 3 == 3 )
print 4 < 3 < 5 != 2 < 7