How do you swap the values of two variables in Python without using a third variable?
x = y; y = x
x, y = y, x
temp = x; x = y; y = temp
x + y; y = x; x = y
This question is part of this quiz :