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