**One line Variable value swapping**
>>> a = 10
>>> b = 5
>>> a, b = b, a
>>> print a
5
>>> print b
10
**a** will have the value of **b** and so on.
This is a side effect of python packing and unpacking feature.