0
may I know about what the use of operator<>
2 Respuestas
+ 4
<> is the not-equal operator. It is similar to the != operator.
a <> b returns True if a is not equal to b, and False otherwise.
0
As name suggest operators operate operations like comparison operation, arithmatic operation etc