itertools.permutations()
  • References/Python/Python/Functional Programming

itertools.permutations(iterable, r=None) Return successive r length permutations of elements in the iterable

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

operator.__or__(a, b) Return the bitwise or of a and b.

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

operator.inv(obj) operator.invert(obj) operator.__inv__(obj) operator

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

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

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

operator.xor(a, b) operator.__xor__(a, b) Return the bitwise exclusive or of a and b.

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

operator.__eq__(a, b) operator.__ne__(a, b) operator.__ge__(a, b) operator

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

operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__().

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

operator.__pos__(obj) Return obj positive (+obj).

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

itertools.product(*iterables, repeat=1) Cartesian product of input iterables. Roughly equivalent

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

operator.ipow(a, b) operator.__ipow__(a, b) a = ipow(a, b) is equivalent to a **= b.

2025-01-10 15:47:30