Report Bug
Qus : If a is a dictionary with some key-value pairs, what does a.popitem() do?
Qusयदि कुछ की-वैल्यू वाले पेअर के साथ एक ड़िक्शनरी है,तो a.popitem () क्या करता है?

A. Removes an arbitrary element
B. Removes all the key-value pairs
C. Removes the key-value pair for the key given as an argument
D. Invalid method for dictionary


Solution
A. Removes an arbitrary element



Explanation
The method popitem() removes a random key-value pair.



Report Bug