Y
Hacker News
new
|
ask
|
show
|
jobs
by
snicker7
2689 days ago
As of 3.7 (3.6 for cpython), dictionaries have a deterministic order.
1 comments
thro_away_n
2689 days 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?
link
b_tterc_p
2689 days ago
Import 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-ordereddic...
link