Augmented Assignment Operators
Augmented Assignment Operators
Instead of writing:
x = x + 5
x += 5
Simple Examples
+= Add and Assign
x = 10
x += 5 # x = x + 5
print(x) # Output: 15
Summary
Augmented assignment makes your code:
Shorter
Cleaner
Easier to understand