Source Code:
(back to article)
# swap the values of two variables a = 1 b = 2 a, b = b, a print(a) # 2 print(b) # 1
Result:
Report an issue