Day July 11, 2019

Working With Dictionaries In Python

Working With Dictionaries In Python

Dictionaries in pythons are a collection of key-value pairs. They are very similar to JSON data types in JavaScript. Dictionaries are indexed, we can modify them, and they are no ordered. This makes it very flexible and useful. Since we…