KnowledgeBoat Logo

Computer Science

To store values in terms of key and value, what core data type does Python provide ?

  1. list
  2. tuple
  3. class
  4. dictionary

Python Dictionaries

1 Like

Answer

dictionary

Reason — Dictionaries are mutable with elements in the form of a key:value pair that associate keys to values.

Answered By

3 Likes


Related Questions