Python Program to Swap Two Variables

in #python-dev5 years ago (edited)
# 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))

Coin Marketplace

STEEM 0.17
TRX 0.24
JST 0.033
BTC 96193.44
ETH 2701.51
SBD 0.43