Instagram
youtube
Facebook
Twitter

Swap Two Numbers Using a Third Variable

A Python program to swap two numbers using a third variable.

Here’s the explanation in  points:

  1. Input: Takes two numbers from the user (num and num2).
     
  2. Store First Number: The value of num is stored in third.
     
  3. Swap:
     
    • num gets the value of num2.
       
    • num2 gets the value stored in third (original num).
       
  4. Output: Prints the swapped values of num and num2.

 

Program:

num=int(input("Enter a number First:"))
num2=int(input("Enter a number Second"))


third=num
num=num2
num2=third
print(f"After swapping: First number = {num}, Second number = {num2}")