Programming Examples
Python program to swap two values using tuple assignment
Write a program to swap two values using tuple assignment
Solution
Output/ Explanation:
Enter value of A: 54
Enter value of B: 38
Value of A = 54
Value of B = 38
Value of A = 38
Value of B = 54