swap string and int in python code example
Example 1: swapping in python
x = 5
y = 10
x, y = y, x
print("x =", x)
print("y =", y)
Example 2: code to swap in python
a=5
b=10
a,b=b,a #swapped
x = 5
y = 10
x, y = y, x
print("x =", x)
print("y =", y)
a=5
b=10
a,b=b,a #swapped