Home » Backend » Python » -= (subtraction assignment)
This -= (subtraction assignment) assignment operator subtracts a value from the variable and assigns the result to that variable.
-=
A -= B
Here,
Note: This is equivalent to A = A - B
>>> a = 10 >>> a -= 5 >>> a 5