operator.ne(a, b) operator.ge(a, b) operator.gt(a, b) operator
operator.__setitem__(a, b, c) Set the value of a at index b to c.
operator.__matmul__(a, b) Return a @ b.
itertools.filterfalse(predicate, iterable) Make an iterator that filters elements from iterable returning only those for which
operator.__irshift__(a, b) a = irshift(a, b) is equivalent to a >>= b.
itertools.starmap(function, iterable) Make an iterator that computes the function using arguments obtained from the iterable
operator.__ne__(a, b) operator.__ge__(a, b) operator.__gt__(a, b) Perform
operator.truediv(a, b) operator.__truediv__(a, b) Return a / b where 2/3 is .66 rather than 0. This
operator.sub(a, b) operator.__sub__(a, b) Return a - b.
operator.__floordiv__(a, b) Return a // b.
Page 6 of 13