Using next(reversed(od))
is a perfect way of accessing the most-recently added element. The class OrderedDict
uses a doubly linked list for the dictionary items and implements __reversed__()
, so this implementation gives you O(1) access to the desired element. Whether it is worthwhile to subclass OrderedDict()
for this simple operation may be questioned, but there’s nothing actually wrong with this approach.