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.gt()
  • References/Python/Python/Functional Programming

operator.gt(a, b) operator.__lt__(a, b) operator.__le__(a, b) operator

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

operator.floordiv(a, b) operator.__floordiv__(a, b) Return a // b.

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

operator.add(a, b) operator.__add__(a, b) Return a + b, for a and b numbers.

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

operator.__itruediv__(a, b) a = itruediv(a, b) is equivalent to a /= b.

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.__mul__(a, b) Return a * b, for a and b numbers.

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
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