What will be the output of the following Python code snippet?
>>> a={1:"A",2:"B",3:"C"}>>> del a
निम्नलिखित Python कोड स्निपेट का आउटपुट क्या होगा?
A. method del doesn’t exist for the dictionary मैथड डेल डिक्शनरी में मौजूद नहीं है
B. del deletes the values in the dictionary डेल ड़िक्शनरी में वैल्यूज को डिलीट करता है
C. del deletes the entire dictionary डेल पूरे ड़िक्शनरी को डिलीट कर देता है
D. del deletes the keys in the dictionary डेल ड़िक्शनरी में keys हटाता है