Skip to content

Instantly share code, notes, and snippets.

@dennda
Created January 16, 2012 15:00
Show Gist options
  • Save dennda/1621247 to your computer and use it in GitHub Desktop.
Save dennda/1621247 to your computer and use it in GitHub Desktop.
>>> {}.get('foo', 123)
123
>>> {}.get('foo') or 123
123
>>> {'foo': []}.get('foo', 123)
[]
>>> {'foo': []}.get('foo') or 123
123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment