What will be the output of the following Python code snippet?
a = {} a[1] = 1 a['1'] = 2 a[1]=a[1]+1 count = 0 for i in a: count += a[i] print(count)
निम्नलिखित Python कोड स्निपेट का आउटपुट क्या होगा?
A. 1
B. 2
C. 4
D. Error, the keys can’t be a mixture of letters and numbers एरर,keys लेटर्स और नंबर्स का मिक्चर नहीं हो सकता