What's the name of this operator "+=" ?
operators, programming-languages
Solution
It, along with `-=`, `*=`, etc., are called the augmented assignment operators in Python, and "compound assignment" operators everywhere else.
Problem
What's the name of this operator "+=" ?