Report Bug
Qus : Which of the following isn’t true about dictionary keys?
Qusनिम्नलिखित में से कौन ड़िक्शनरी keys के बारे में सही नहीं है?

A. More than one key isn’t allowed
B. Keys must be immutable
C. Keys must be integers
D. When duplicate keys encountered, the last assignment wins


Solution
C. Keys must be integers



Explanation
Keys of a dictionary may be any data type that is immutable.



Report Bug