I propose we apply PEP 3132 to PEP 203. That is, for every statement where "<lhs> = <rhs>" is valid I propose "lhs += rhs" should also be valid.
Simple example: a = 0 b = 0 a, b += 1, 2 # a is now 1 # b is now 2
_______________________________________________ Python-ideas mailing list Python-ideas@python.org https://mail.python.org/mailman/listinfo/python-ideas Code of Conduct: http://python.org/psf/codeofconduct/