I tried searching, but could not find much about the <>
operator.
Python - Basic Operators mentions that <>
is "similar" to the !=
operator and does not say what is different or how it is different.
My tests seem to show it is the same:
a = 2, b = 3
>>> a != b
True
>>> a <> b
True
>>> b = 2
>>> a != b
False
>>> a <> b
False