Saved Bookmarks
| 1. |
Which of these about a dictionary is false?(a) The values of a dictionary can be accessed using keys(b) The keys of a dictionary can be accessed using values(c) Dictionaries aren’t ordered(d) Dictionaries are mutable |
|
Answer» Right choice is (b) The keys of a dictionary can be accessed using values Best explanation: The values of a dictionary can be accessed using keys but the keys of a dictionary can’t be accessed using values. |
|