Python program to swap two variables - By using comma operator
Python Operators in Python (Article) Operators in Python (Program)
398Program:
P = int( input("Please enter value for P: ")) Q = int( input("Please enter value for Q: ")) # To Swap the values of two variables P, Q = Q, P print ("The Value of P after swapping: ", P) print ("The Value of Q after swapping: ", Q)
Output:
Please enter value for P: 12 Please enter value for Q: 43 The Value of P after swapping: 43 The Value of Q after swapping: 12
Explanation:
No
This Particular section is dedicated to Programs only. If you want learn more about Python. Then you can visit below links to get more depth on this subject.