9 ms·
What's the best way to write code that relies on this deterministic order and prevent it from running incorrectly with older python versions?
by thro_away_n 8y ago
What's the best way to write code that relies on this deterministic order and prevent it from running incorrectly with older python versions?
- b_tterc_p 8y agoImport collections.OrderedDict as you would have done beforehand. There are still some differences between them. (Dicts in 3.7 and ordered dicts) https://stackoverflow.com/questions/50872498/will-ordereddict-become-redundant-in-python-3-7 https://stackoverflow.com/questions/50872498/will-ordereddic...