: A Python small TIP, exchanges the value of two variables, and does not use the third variable:
>>> a, b = 1, 2
>>> A, B = B, A
>>> a, b
(twenty one)
>>>