Why Python’s OrderedDict maintain the order
Why Python’s OrderedDict maintain the order
Link: https://www.piglei.com/articles/en-why-is-python-ordereddict-ordered/
Context
This is nice. It makes sense now. Using two pieces of data structure, the doubly linked list to maintain the order and the dictionary for the ease of access. Balancing both the requirements swiftly.
Source: techstructive-weekly-66