In Python Dictionaries organize the information by .........., not position.
2024
In Python Dictionaries organize the information by .........., not position.
- A.
Sequencing
- B.
Ordering
- C.
Inheritance
- D.
Association
Attempted by 90 students.
Show answer & explanation
Correct answer: D
Python dictionaries are mapping data structures that organize data using key–value associations, not by positional indexing.
Each value is accessed via its unique key, making association-based storage the defining concept.