data structures

Fundamentals of Dictionaries

May 17, 2023
article
python, data structures, development

Are you interested in learning about a more efficient way to store and access information than using a traditional list? Consider using dictionaries. A dictionary, also known as an associative array, map, hash, or hash map, is a data structure that represents objects as key-value pairs, making it easy to access information by knowing a key. For instance, suppose you want to create an inventory of your video games, including information like name, genre, platforms, and ratings. ...