x == y
x < y
x <= y
x >= y
x != y
x is y
x is not y
x in y
x not in y
>>> "foo" == "foo" True >>> "foo" == "bar" False