What will be the output of the following Python code?
a={} a[2]=1 a[1]=[2,3,4] print(a[1][1])
निम्नलिखित Python कोड का आउटपुट क्या होगा?
A. [2,3,4]
B. 3
C. 2
D. An exception is thrown एक एक्सेप्शन फेंक दिया जाता है