Skip to content

Instantly share code, notes, and snippets.

@lucemia
Created August 7, 2014 17:57
Show Gist options
  • Select an option

  • Save lucemia/2587d8106cc64da58bd4 to your computer and use it in GitHub Desktop.

Select an option

Save lucemia/2587d8106cc64da58bd4 to your computer and use it in GitHub Desktop.
defaultdict with key
from collections import defaultdict
class vdict(defaultdict):
def __missing__(self, key):
return self.default_factory(key)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment