Python Program to Swap Two Variables: In this program, we will see the python program to swap two variables,swapping the numbers using temporary variable and in the second program.
Python Program to Swap Two Variables
Source code
# Python program to swap two variables
x = 5
y = 10
# To take inputs from the user
#x = input('Enter value of x: ')
#y = input('Enter 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))
Output of Program
Python Program to Swap Two Variables