python not in comparison code example
Example 1: Python Comparison Operator
">" | "<" | "==" | ">=" | "<=" | "!=" | "is" ["not"] | ["not"] "in"
Example 2: Python Comparison Operator
x < y <= z is equivalent to x < y and y <= z,
">" | "<" | "==" | ">=" | "<=" | "!=" | "is" ["not"] | ["not"] "in"
x < y <= z is equivalent to x < y and y <= z,