FieldList.
__ne__
The rich comparison operator !=
!=
f.__ne__(x) <==> f!=x
Each field in the field list is compared with the field’s equals method, as opposed to the == operator.
equals
==
Note that f!=x is equivalent to not f.equals(x).
f!=x
not f.equals(x)
bool