RE: Python Program to Swap Two Variables
Won't this method to be easier?
x = 5 y = 10 [x, y] = [y,x] print(x) print(y)
RE: Python Program to Swap Two Variables