Skip to content

Instantly share code, notes, and snippets.

@h2rd
Created November 13, 2013 18:03
Show Gist options
  • Select an option

  • Save h2rd/7453522 to your computer and use it in GitHub Desktop.

Select an option

Save h2rd/7453522 to your computer and use it in GitHub Desktop.
l = dict(a=1, b=2, c=3,
d=4, f=5)
dict(((v, k) for k, v in l.iteritems()))
{v:k for k, v in l.iteritems()}
dict(zip(l.values(), l.keys()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment