News

Latest commit History History 6 lines (5 loc) · 180 Bytes main Breadcrumbs python-practice / ...
Python 1-0-1 🧠 : Augmented Assignement What is Augmented Assignment? - Operators like +=, -=, *=, //= combine an operation with assignment.
Footnotes The table above says “similar to” because, for example, a += b isn’t exactly the same as a = a + b. In augmented assignment, the left-hand side is evaluated before the right-hand side, then ...
PEP Withdrawal While working on this PEP, I realised that it didn't really address what was actually bothering me about PEP 572 's proposed scoping rules for previously unreferenced assignment targets ...