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:
Comments