Question:medium

Which of the following data structures is used for storing key-value pairs in Python?

Show Hint

Dictionaries are a versatile data structure in Python, used to store data in a key-value pair format. Keys must be unique, and they map to specific values.
  • List
  • Dictionary
  • Tuple
  • Set
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0