CBSE Class 12 Computer Science Question 66 of 105

Python Revision Tour II — Question 15

Back to all questions
15
Question

Question 15

Why is a dictionary termed as an unordered collection of objects ?

Answer

A dictionary is termed as an unordered collection of objects because the elements in a dictionary are not stored in any particular order. Unlike string, list and tuple, a dictionary is not a sequence. For a dictionary, the printed order of elements is not the same as the order in which the elements are stored.