Report Bug
Qus :

What is the output of following code

d = {}
d[1] = "Python"
d[2] = "Java"
print(len(d))

Qus

निम्नलिखित कोड का आउटपुट क्या होगा?

d = {}
d[1] = "Python"
d[2] = "Java"
print(len(d))


A. 0
B. 1
C. 2
D. Error


Solution
C. 2






Report Bug