Tuple Python

X = 'spam'
Y = 'eggs'
print X
print Y
X, Y = Y, X
print X
print Y