We can define Dictionary as a collection of keys-values pairs which are unordered, mutable and indexable. Dictionaries in Python are written with the use of curly brackets and between curly brackets, we define our key-value pairs separated with colons : .between each pair. Just like the lists in Python you can manipulate them. A Python dictionary […]