Dictionary
Let's learn a useful data structure, dictionaries.
What is a dictionary
?
A dictionary consists of a key and a value. In an array, the key is created automatically (0, 1, and so on). With dictionaries, the key name can be set to something meaningful. As with ...