Examveda

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)]

B. [(2,4),(1,2),(3,9)]

C. Error because tuples are immutable

D. Error, tuple has no sort attribute

Answer: Option A


This Question Belongs to Python Program >> Tuples In Python

Join The Discussion

Related Questions on Tuples in Python