$ python >>> from nocasedict import NocaseDict >>> dict1 = NocaseDict({'Alpha': 1, 'Beta': 2}) >>> dict1['ALPHA'] # Lookup by key is case-insensitive 1 >>> print ...
The episode Short Introduction to Programming in Python notes in the key points at the end: Dictionaries are unordered data structures that provide mappings between keys and values. However it is not ...