Python Program to Swap Two Variables ( find the address of after swapping and before swapping variables) code example
Example 1: swapping in python
x = 5
y = 10
x, y = y, x
print("x =", x)
print("y =", y)
Example 2: swapping variables in python
a = 1
b = 2
a, b = b, a
# a = 2 , b = 1