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

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

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

operator.imod(a, b) operator.__imod__(a, b) a = imod(a, b) is equivalent to a %= b.

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

operator.__delitem__(a, b) Remove the value of a at index b.

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

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

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

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

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.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.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.

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.__mod__(a, b) Return a % b.

2025-01-10 15:47:30