

InterviewSolution
Saved Bookmarks
1. |
Which of the statements about dictionary values if false?(a) More than one key can have the same value(b) The values of the dictionary can be accessed as dict[key](c) Values of a dictionary must be unique(d) Values of a dictionary can be a mixture of letters and numbersI had been asked this question in exam.My query is from Dictionary in section Dictionary, Functions and Built-in Functions of Python |
Answer» The correct CHOICE is (c) Values of a DICTIONARY must be unique |
|