"X|Y" PYTHON code example
Example 1: logical operators in python
condition1 and condition2
condition1 or condition2
not condition
Example 2: x and y in python
x > y is False
x < y is True
x == y is False
x != y is True
x >= y is False
x <= y is True