File: class/Workbook/Exercises/Lab2/ex4.txt

>>> X = 'spam'
>>> Y = 'eggs'
>>> X, Y = Y, X
>>> X
'eggs'
>>> Y
'spam'



[Home page] Books Code Blog Python Author Train Find ©M.Lutz