Report Bug
Qus :

What will be the output of the following Python code?

a={1:"A",2:"B",3:"C"}
a.clear() 
print(a)

Qus

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

a={1:"A",2:"B",3:"C"}
a.clear() 
print(a)


A. None
B. { None:None, None:None, None:None}
C. {1:None, 2:None, 3:None}
D. { }


Solution
D. { }



Explanation
The clear() method clears all the key-value pairs in the dictionary.



Report Bug