Python program to swap two numbers
top of page

Python program to swap two numbers

Updated: May 26, 2021



Python program Swap two Number with temporary variable

a=int(input("Enter The First Number :"))

b=int(input("Enter The Second Number :"))

print("Before SWAPPING a=",a," b=",b)

c=a

a=b

b=c

print("After SWAPPING a= ",a," b= ",b)


Output:

Enter The First Number :45

Enter The Second Number :78

Before SWAPPING a= 45 b= 78

After SWAPPING a= 78 b= 45

Python program Swap two Number without temporary variable

a=5

b=15

print(a, b)

a, b=b, a

print(a,b)

Output:

5 15

15 5


Swap two Number with temporary variable and without temporary variable Video:





Recent Posts

See All

Python program to calculate the factorial of a number

Write a Python function to calculate the factorial of a number (a non-negative integer). The function accepts the number as an argument. This program is most for O Level Practical Exam so read it care

NumPy program to find the most frequent value in the list.

This program is most for O Level Practical Exam so read it carefully. Program: import numpy as np x = np.array([1,2,3,4,5,7,2,1,1,1,8,9,1]) print(x) print("most frequent value in the list:") print(np.

bottom of page