Python: Swap two variables
Swap Variables
Write a Python program to swap two variables.
Python: swapping two variables
Swapping two variables refers to mutually exchanging the values of the variables. Generally, this is done with the data in memory.
The simplest method to swap two variables is to use a third temporary variable :
define swap(a, b) temp := a a := b b := temp
Sample Solution-1:
Python Code:
Sample Output:
Before swap a = 30 and b = 20 After swaping a = 20 and b = 30
Sample Solution-2:
Python Code:
Sample Output:
Initial Value of x = 34 Initial Value of y = 56 After swaping value of x = 56 After swaping value of y = 34
For more Practice: Solve these Related Problems:
- Write a Python program to swap three variables in a single line.
- Write a Python program to swap variables using bitwise XOR.
- Write a Python program to swap two variables without using a third variable.
- Write a Python program to swap values in a dictionary based on keys.
Python Code Editor:
Previous: Write a Python program to create a copy of its own source code.
Next: Write a Python program to define a string containing special characters in various forms.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics