''' Pythonic way of VALUE SNAPPING ''' a, b = 5, 10 print(a, b) a, b = b, a print(a, b)