Answers for "excanging value of two variable in python"

0

excanging value of two variable in python

# 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))
Posted by: Guest on April-26-2020

Code answers related to "excanging value of two variable in python"

Python Answers by Framework

Browse Popular Code Answers by Language