Computer Science, asked by LoganDRavager5037, 1 month ago

Which method is used to create an object that stores dictionary data?

Answers

Answered by RF7
4

Answer:

A python dictionary

Explanation:

Hope it may help you

Answered by Jasleen0599
0

A python dictionary is used to create an object that stores dictionary data.

  • Dictionary in Python is an unordered assortment of information values, used to store information values like a guide, which, dissimilar to different Data Types that hold just a solitary value as a component.
  • Dictionary holds the key: value pair. Key-value is given in the dictionary to make it more enhanced.
  • The dictionary is an unordered assortment that contains key: value sets isolated by commas inside wavy sections.
  • Dictionaries are advanced to recover values when the key is known.
  • Dictionary can also be created by the built-in function dict().
  • Python's dictionaries are somewhat hash table sort. They work like cooperative clusters or hashes found in Perl and comprise key-value sets.
  • A dictionary key can be practically any Python type, however, are normally numbers or strings. Values, then again, can be any erratic Python object.
Similar questions