operator.ixor(a, b) operator.__ixor__(a, b) a = ixor(a, b) is equivalent to a ^= b.
partial.keywords The keyword arguments that will be supplied when the partial object is called.
itertools.chain(*iterables) Make an iterator that returns elements from the first iterable until it is exhausted, then proceeds
operator.gt(a, b) operator.__lt__(a, b) operator.__le__(a, b) operator
operator.length_hint(obj, default=0) Return an estimated length for the object o. First try to return its actual length
operator.__pow__(a, b) Return a ** b, for a and b numbers.
operator.inv(obj) operator.invert(obj) operator.__inv__(obj) operator
operator.ipow(a, b) operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.
operator.iadd(a, b) operator.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.
operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__().
Page 1 of 13