python how to swap values function code example Example: swapping variables in python a = 1 b = 2 a, b = b, a # a = 2 , b = 1