Python Program to Swap Two Variables

in #python-dev4 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.27
TRX 0.13
JST 0.032
BTC 62441.36
ETH 2940.53
USDT 1.00
SBD 3.59