It's very easy to make mistakes like a, b = a, b, not a, b = b, a,
If simultaneous assignment was not available, you would need to do something else instead. An alternative approach might look something like this:
tmp = a
a = b
b = tmp
It is much easier if you are mistaken.
source
share