eshots Interview Question

Swap two variables in one line in python

Interview Answer

Anonymous

Dec 27, 2016

x,y = y, x

1