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

operator.truth(obj) Return

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.__lt__(a, b) operator.__le__(a, b) operator.__eq__(a, b) operator

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

operator.iconcat(a, b) operator.__iconcat__(a, b) a = iconcat(a, b) is equivalent to a += b

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

operator.methodcaller(name[, args...]) Return a callable object that calls the method name on its operand. If additional

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

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

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

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

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

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

2025-01-10 15:47:30