operator.
  • References/Python/Python/Functional Programming

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

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

operator.not_(obj) operator.__not__(obj) Return the outcome of not obj. (Note that there is

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

operator.and_(a, b) operator.__and__(a, b) Return the bitwise and of a and b.

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

operator.truth(obj) Return

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

operator.__imul__(a, b) a = imul(a, b) is equivalent to a *= b.

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

operator.__sub__(a, b) Return a - b.

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

operator.attrgetter(attr) operator.attrgetter(*attrs) Return a callable object that fetches attr from its

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

operator.is_not(a, b) Return a is not b. Tests object identity.

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

operator.imatmul(a, b) operator.__imatmul__(a, b) a = imatmul(a, b) is equivalent to a @= b

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

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

2025-01-10 15:47:30