Old #Python: from collections import OrderedDict New Python: d = {} # already ordered Since 3.7, regular dicts keep insertion order as a language guarantee. You rarely need OrderedDict now. Want more? My "python --update" course starts July 21: buff.ly/y3YiRyy
3 likes 1 replies
?