Bertukar variabel

x = 10
y = 11


x, y = y, x
"Swapping by simultaneously creating a tuple and unpacking it"

print(x, y)
OHIOLee