Q. What will be the output of the following code snippet?
Code:
a = 3 b = 1 print(a, b) a, b = b, a print(a, b)
β
Correct Answer: (A)
3 1 1 3
a = 3 b = 1 print(a, b) a, b = b, a print(a, b)
You must be Logged in to update hint/solution