operator.getitem()
  • References/Python/Python/Functional Programming

operator.getitem(a, b) operator.__getitem__(a, b) Return the value of a at index b.

2025-01-10 15:47:30
operator.
  • References/Python/Python/Functional Programming

operator.__matmul__(a, b) Return a @ b.

2025-01-10 15:47:30
operator.mul()
  • References/Python/Python/Functional Programming

operator.mul(a, b) operator.__mul__(a, b) Return a * b, for a and b numbers.

2025-01-10 15:47:30
operator.ilshift()
  • References/Python/Python/Functional Programming

operator.ilshift(a, b) operator.__ilshift__(a, b) a = ilshift(a, b) is equivalent to a <<=

2025-01-10 15:47:30
operator.ne()
  • References/Python/Python/Functional Programming

operator.ne(a, b) operator.ge(a, b) operator.gt(a, b) operator

2025-01-10 15:47:30
itertools.accumulate()
  • References/Python/Python/Functional Programming

itertools.accumulate(iterable[, func]) Make an iterator that returns accumulated sums, or accumulated results of other binary

2025-01-10 15:47:30
operator.abs()
  • References/Python/Python/Functional Programming

operator.abs(obj) operator.__abs__(obj) Return the absolute value of obj.

2025-01-10 15:47:30
itertools.islice()
  • References/Python/Python/Functional Programming

itertools.islice(iterable, stop) itertools.islice(iterable, start, stop[, step]) Make an iterator that returns selected

2025-01-10 15:47:30
itertools.combinations()
  • References/Python/Python/Functional Programming

itertools.combinations(iterable, r) Return r length subsequences of elements from the input iterable.

2025-01-10 15:47:30
operator.
  • References/Python/Python/Functional Programming

operator.__irshift__(a, b) a = irshift(a, b) is equivalent to a >>= b.

2025-01-10 15:47:30