values() डिक्शनरी का एक फंक्शन है जो डिक्शनरी से सभी वैल्यू प्राप्त करता है।<break-line><break-line>values() is a function of dictionary that gets all values.
frozenset(s) फ़ंक्शन टपल्स के सीक्वेंस को डिक्शनरी में परिवर्तित करता है।<break-line><break-line>frozenset(s) function converts a sequence of tuples to dictionary.
निम्न में से कौन डिक्शनरी में key= “tiger” के लिए key-value pair को हटाएगा?<break-line><break-line>Which of the following will delete key-value pair for key = “tiger” in dictionary?<pre><code>dic = {
"lion" : "wild",
"tiger" : "wild",
"cat" : "domestic",
"dog" : "domestic"
}</code></pre>