What will be the output of the following Python code snippet?
a={1:"A",2:"B",3:"C"}a.setdefault(4,"D") print(a)
निम्नलिखित Python कोड स्निपेट का आउटपुट क्या होगा?
A. {1: ‘A’, 2: ‘B’, 3: ‘C’, 4: ‘D’}
B. None कोई नहीं
C. Error एरर
D. [1,3,6,10]