Python – Swap Two Numbers
To swap two numbers, say a,b , in Python, you can use assignment operator as shown below:
a,b = b,a
Run Thats it. Now b
holds the original value of a
. And a
holds the original value of b
. Let use see an example.
Example 1: Swap two Numbers
In this example, we take two variables holding numbers. Then we swap the data in those variables.
Python Program
a = 5
b = 45
a,b = b,a
print('a:',a)
print('b:',b)
Run Output
a: 45
b: 5
Summary
In this tutorial of Python Examples, we learned how to swap two numbers, using assignment operator.
Related Tutorials
- Python – Sum of Two Numbers
- Python – Sum of First N Natural Numbers
- Python – Smallest of Three Numbers
- How to Get Number of Axes in Pandas DataFrame?
- Python Program to Add Two Numbers
- Python – Factorial of a Number
- Reverse a Number in Python
- Python Complex Number – Initialize, Access
- Python – Largest of Three Numbers
- Numpy sqrt() – Find Square Root of Numbers