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.__iconcat__(a, b) a = iconcat(a, b) is equivalent to a += b for a and b

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

itertools.tee(iterable, n=2) Return n independent iterators from a single iterable. Roughly equivalent to:

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

itertools.count(start=0, step=1) Make an iterator that returns evenly spaced values starting with number start. Often

2025-01-10 15:47:30