1.

What is the output of the following piece of code? >>> 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» E.


Discussion

No Comment Found