Python operator.iadd Function
The operator.iadd function in Python’s operator module performs in-place addition on two objects. It is equivalent to using the += operator but allows the in-place addition operation to be used as a function, which can be useful in functional programming and higher-order functions.