Q45
What will be the output of the following Python code? >>> a,b=6,7 >>> a,b=b,a >>> a,b
A.
(6,7)
B.
Invalid syntax
C.
(7,6)
AnswerD.
Nothing is printed
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board