Day 7: Dictionaries
Today, I started learning about Hash Tables or what in Python is called the Dictionary - a data structure you can use to quickly look-up values for a given key.
dictionary = {
"A": "the letter A",
"B": "the letter B",
"Key": "Value",
}
Di...
allienicole.hashnode.dev1 min read