Q38
What will be the output of the following Python code? >>> a=[(2,4),(1,2),(3,9)] >>> a.sort() >>> a
A.
[(1, 2), (2, 4), (3, 9)]
AnswerB.
[(2,4),(1,2),(3,9)]
C.
Error because tuples are immutable
D.
Error, tuple has no sort attribute
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board