(a+=b) != (a=a+b)
You might be familiar with the compound operator in Python.
For those, who didn't.They are used to shorten the expressions.
Example
a = 2
If we want to increment the value of a by 1, we need to use the below notation.
a = a + 1
But, with the help ...
manitej.hashnode.dev1 min read