Skip to content

Instantly share code, notes, and snippets.

@RafaAguilar
Last active January 30, 2016 01:32
Show Gist options
  • Save RafaAguilar/d93630c399d8902104d6 to your computer and use it in GitHub Desktop.
Save RafaAguilar/d93630c399d8902104d6 to your computer and use it in GitHub Desktop.
Order an OrderedDict with numeric String keys
def str_num_order_odict(odict):
return OrderedDict(sorted(odict.items(), key=lambda x: int(x[0])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment