You are here: Home / Topics / Python program to swap two variables

Python program to swap two variables

Filed under: Python on 2023-09-17 21:54:55

#!/usr/bin/python
# -*- coding: utf-8 -*-
# Python program to swap two variables
# 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)

About Author:
S
Shyam Dubey     View Profile
If you are good in any field. Just share your knowledge with others.