operator.__truediv__(a, b) Return a / b where 2/3 is .66 rather than 0. This is also known as “true” division.
operator.__mod__(a, b) Return a % b.
operator.is_not(a, b) Return a is not b. Tests object identity.
operator.truth(obj) Return
operator.indexOf(a, b) Return the index of the first of occurrence of b in a.
operator.__getitem__(a, b) Return the value of a at index b.
operator.is_(a, b) Return a is b. Tests object identity.
operator.imatmul(a, b) operator.__imatmul__(a, b) a = imatmul(a, b) is equivalent to a @= b
itertools.combinations_with_replacement(iterable, r) Return r length subsequences of elements from the input iterable
operator.__imod__(a, b) a = imod(a, b) is equivalent to a %= b.
Page 9 of 13