Python Program to Swap Two Variables

Configurare noua (How To)

Situatie

In this example, you will learn to swap two variables by using a temporary variable and, without using temporary variable. In this program, we use the temp variable to hold the value of x temporarily. We then put the value of y in x and later temp in y. In this way, the values get exchanged.

Backup

# 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

The value of x after swapping: 10
The value of y after swapping: 5

Solutie

Tip solutie

Permanent

Voteaza

(12 din 17 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?