Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to Swap Two Variables using Python?
By using a temporary variable −
>>> x=10 >>> y=20 >>> z=x >>> x=y >>> y=z >>> x,y (20, 10)
Without using temporary variable
>>> a,b=5,7 >>> a,b (5, 7) >>> a,b=b,a >>> a,b (7, 5)
Advertisements
