Learning Python -Dictionaries
Continuing with my notes on learning Python. A brief overview of Dictionaries in Python from the Python Dev Bootcamp. Are unordered mappings Key-value pair Do not need to know the exact index position Just need to know the key in order to know the value Uses curly braces and colons to signify the keys and …