not operator in python 3 code example
Example 1: x and y in python
x + y = 19
x - y = 11
x * y = 60
x / y = 3.75
x // y = 3
x ** y = 50625
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