Python: Test Order (Greater, Lesser)

By Xah Lee. Date: .
x < y
less than
x <= y
less equal
x > y
greater
x >= y
greater equal

Python: Operators