Report Bug
Qus :

What will be the output of the following Python code?

d1={"abc":5,"def":6,"ghi":7}
print(d1[0])

Qus

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

d1={"abc":5,"def":6,"ghi":7}
print(d1[0])


A. abc
B. 5
C. {"abc":5}
D. error


Solution
D. error






Report Bug