Operator Python Tutorial

x, y = 3.1415926536, -1024
print x < 5.0
print not (x < 5.0)
print (x < 5.0) or (y > 2.718281828)
print (x < 5.0) and (y > 2.718281828)
print not (x is y)