Q. Which of the following data types is ordered in Python?
β
Correct Answer: (A)
list
Explanation: Lists maintain the insertion order. Sets and frozensets are unordered. Dictionaries preserve order only from Python 3.7 onward.