Python’s built-in data containers are widely used in data science and programming:
Lists (Option A): Ordered, mutable sequences.
Tuples (Option B): Ordered, immutable sequences.
Dict (Option D): Dictionaries, key-value data structures implemented using hash tables.
LinkedList (Option C): Python does not provide a native linked list as a built-in container. While linked lists can be implemented manually or through external libraries (e.g., collections.deque for efficient appends/pops), they are not part of Python’s main native containers.
Thus, the correct answer is Option C (LinkedList).
[Reference:, DASCA Data Scientist Knowledge Framework (DSKF) – Programming for Data Science: Python Data Structures., ]
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit