operator.truth(obj) Return
operator.imatmul(a, b) operator.__imatmul__(a, b) a = imatmul(a, b) is equivalent to a @= b
operator.__lt__(a, b) operator.__le__(a, b) operator.__eq__(a, b) operator
operator.iconcat(a, b) operator.__iconcat__(a, b) a = iconcat(a, b) is equivalent to a += b
operator.methodcaller(name[, args...]) Return a callable object that calls the method name on its operand. If additional
operator.is_(a, b) Return a is b. Tests object identity.
operator.__le__(a, b) operator.__eq__(a, b) operator.__ne__(a, b) operator
operator.and_(a, b) operator.__and__(a, b) Return the bitwise and of a and b.
operator.not_(obj) operator.__not__(obj) Return the outcome of not obj. (Note that there is
operator.__sub__(a, b) Return a - b.
Page 7 of 13