Skip to content

Instantly share code, notes, and snippets.

@heyLu
Last active August 29, 2015 14:02
Show Gist options
  • Save heyLu/c50583ca350b9c6a62d2 to your computer and use it in GitHub Desktop.
Save heyLu/c50583ca350b9c6a62d2 to your computer and use it in GitHub Desktop.
default dict
from collections import defaultdict
d = defaultdict(lambda: 42)
d["hello"] = "world"
d["hello"] # => 'world'
d["answer"] # => 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment