Write a program to swap two numbers in python


Asked by admin @ in Computer Science viewed by 343 People


Write a program is python to swap two numbers.

Answered by admin @



Answer:

Source Code: Using a temporary variable

# 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

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.

Source Code: Without Using Temporary Variable

In Python, there is a simple construct to swap variables. The following code does the same as above but without the use of any temporary variable.

x = 5

y = 10

x, y = y, x

print("x =", x)

print("y =", y)

If the variables are both numbers, we can use arithmetic operations to do the same. It might not look intuitive at first sight. But if you think about it, it is pretty easy to figure it out. Here are a few examples

Addition and Subtraction

x = x + y

y = x - y

x = x - y

Multiplication and Division

x = x * y

y = x / y

x = x / y

XOR swap

This algorithm works for integers only

x = x ^ y

y = x ^ y

x = x ^ y


Similar Questions

C++ program to add two complex numbers using class

Asked by admin @ in Computer Science viewed by 398 persons

Write a c++ program to perform addition of two complex numbers using classes​

Program to find greatest of three numbers in python

Asked by admin @ in Computer Science viewed by 336 persons

Write a program in python to find the greatest number among three numbers​

Write a program to calculate compound interest in python

Asked by admin @ in Physics viewed by 413 persons

Write a program in python to calculate the compound interest​

Write a program to display your name in python

Asked by admin @ in Computer Science viewed by 340 persons

Write a code in python to display your name and age.

Which two languages contributed to python as a programming language

Asked by admin @ in Computer Science viewed by 350 persons

Which two languages contributed to Python as a programming language

Write a program to split number into digits in java

Asked by admin @ in Computers and Technology viewed by 332 persons

Write a Java program that asks the user to enter a 10-digit string as a typical U.S. telephone number, extracts the 3-digit area code, the 3-digit "exchange," and the remaining …

Program to find sum of two numbers in c++

Asked by admin @ in Computer Science viewed by 345 persons

Write a program in C++ to display the sum of two numbers 20 and 30.

Write a program to find average of three numbers

Asked by admin @ in Computer Science viewed by 332 persons

Write a program to find average of three numbers.

Python program to print first n numbers divisible by 5

Asked by admin @ in Computer Science viewed by 351 persons

Write a Python program using while loop first N numbers divisible by 5.

Write two mixed numbers that have the sum of 3

Asked by maham237 @ in Mathematics viewed by 319 persons

Write two prime numbers whose difference is 10

Asked by admin @ in Math viewed by 378 persons

Write two prime numbers whose difference is 10

Write two rational number which are their own reciprocal

Asked by admin @ in Math viewed by 357 persons

Write two rational number which are their own reciprocal

Do two whole numbers always have a least common multiple

Asked by admin @ in Mathematics viewed by 364 persons

In your own words, what is the least common multiple of two whole numbers? How can you find it?

Write a program to calculate area of circle in c++

Asked by admin @ in Computers and Technology viewed by 308 persons

I want to write a C++ program to read the diameter of a circle. The program should find and display the area and circumference of the circle. Define a constant …

Most viewed questions in Computer Science


A programmer mistakenly writes gor instead of for

Asked by admin @ in Computer Science viewed by 19012 persons


Domestic data entry operator ncert book class 9 solutions

Asked by admin @ in Computer Science viewed by 15788 persons


Information technology code 402 class 9 solutions chapter 1

Asked by admin @ in Computer Science viewed by 10957 persons



Ncert solutions for class 8 computer chapter 1 computer system

Asked by admin @ in Computer Science viewed by 10392 persons


A scrum team works on a 4 weeks sprint

Asked by admin @ in Computer Science viewed by 8715 persons


Which of the following occupies more memory in c

Asked by admin @ in Computer Science viewed by 8124 persons



A database of motor vehicles has the base entity

Asked by admin @ in Computer Science viewed by 7833 persons


The network architecture can be termed as a mcq

Asked by admin @ in Computer Science viewed by 6475 persons


Cat5 and cat6 cabling refer to which reference model layer

Asked by admin @ in Computer Science viewed by 5781 persons



Class 7 computer chapter 3 questions and answers

Asked by admin @ in Computer Science viewed by 5680 persons


Choose the correct options about usability and user experience

Asked by admin @ in Computer Science viewed by 5467 persons


Which advocates daily team meetings for coordination and integration

Asked by admin @ in Computer Science viewed by 4973 persons



Which three security features match the database security level

Asked by admin @ in Computer Science viewed by 4963 persons


Which of the dbms package is not available

Asked by admin @ in Computer Science viewed by 4677 persons


________ aid a business grow and attain its objectives

Asked by admin @ in Computer Science viewed by 4480 persons