What will be the output of the following Python code?
a=[(2,4),(1,2),(3,9)]a.sort()print(a)
निम्नलिखित Python कोड का आउटपुट क्या होगा?
A. [(1, 2), (2, 4), (3, 9)]
B. [(2,4),(1,2),(3,9)]
C. Error because tuples are immutable एरर क्योंकि tuples अपरिवर्तनीय हैं
D. Error, tuple has no sort attribute एरर , टपल का कोई प्रकार नहीं है