Dictionary Walk Through— Python

Dictionary is a mapping data structure containing a set of elements where each element is a key-value pair. Dictionaries in other programming languages are called as Hashes or Associative arrays. Dictionaries are indexed by keys rather than integer numbers like in lists or tuples. An example of a simple dictionary is as follows. Alternative Ways … Continue reading Dictionary Walk Through— Python