What will be the output of the following Python code?
>>> a=[(2,4),(1,2),(3,9)]
>>> a.sort()
>>> a
>>> a=[(2,4),(1,2),(3,9)]
>>> a.sort()
>>> a
A. [(1, 2), (2, 4), (3, 9)]
B. [(2,4),(1,2),(3,9)]
C. Error because tuples are immutable
D. Error, tuple has no sort attribute
Answer: Option A
Join The Discussion