SWAP TWO VARIABLES IN PYTHON
Program
# Python program to swap two variables
# To take input from the user
x = input(‘Enter the value of x: ‘)
y = input(‘Enter the value of y: ‘)
# Create a temporary variable and swap the values
temp = x
x = y
y = temp
print(‘The value of x after swapping: {}’.format(x))
print(‘The value of y after swapping: {}’.format(y))
input(“Press Enter to Exit”)
Output