Skip to content

Instantly share code, notes, and snippets.

@andrewsmedina
Created November 21, 2012 23:40
Show Gist options
  • Save andrewsmedina/4128574 to your computer and use it in GitHub Desktop.
Save andrewsmedina/4128574 to your computer and use it in GitHub Desktop.
ordered dict
from collections import OrderedDict
d = OrderedDict()
d["ble"] = "bla"
d["bla"] = "x"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment