What will be the output of the following Python code snippet?
total={} def insert(items): if items in total: total[items] += 1 else: total[items] = 1 insert('Apple') insert('Ball') insert('Apple') print (len(total))
निम्नलिखित Python कोड स्निपेट का आउटपुट क्या होगा?
A. 3
B. 1
C. 2
D. 0