Beginner
Python
Q13 / 101
What is a dictionary in Python?
Correct! Well done.
Incorrect.
The correct answer is B) A collection of key-value pairs
B
Correct Answer
A collection of key-value pairs
Explanation
Python dicts store key-value pairs with O(1) average lookup. Since Python 3.7, insertion order is maintained.
Progress
13/101