Welcome to the World of Online Learning:
Hello Friends “This blog helps you to learn Python programming concepts. You can learn Python language at your own speed and time. One can learn concepts of Python language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.”

Write a Python Program to Swap Two Variables
PROGRAM: PPython Program to Swap Two Variables
/*Python Program to Swap Two Variables*/
# Python program to swap two variables
1.Using a temporary variable
x = 5
y = 10
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
2.Without Using Temporary Variable
x = 5
y = 10
x, y = y, x
print(“x =”, x)
print(“y =”, y)