How to swap two variables in one line ?
x, y = y, xThe y value will be assigned to x and x value to y in the left hand side
x, y = y, x
Comment here: