operator.ilshift(a, b) operator.__ilshift__(a, b) a = ilshift(a, b) is equivalent to a <<=
operator.__not__(obj) Return the outcome of not obj. (Note that there is no __not__() method
operator.ge(a, b) operator.gt(a, b) operator.__lt__(a, b) operator
operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.
itertools.filterfalse(predicate, iterable) Make an iterator that filters elements from iterable returning only those for which
operator.getitem(a, b) operator.__getitem__(a, b) Return the value of a at index b.
operator.sub(a, b) operator.__sub__(a, b) Return a - b.
itertools.starmap(function, iterable) Make an iterator that computes the function using arguments obtained from the iterable
operator.iand(a, b) operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b
operator.__ne__(a, b) operator.__ge__(a, b) operator.__gt__(a, b) Perform
Page 5 of 13