Skip to content

Instantly share code, notes, and snippets.

@Geekfish
Last active October 13, 2015 23:57
Show Gist options
  • Save Geekfish/4275961 to your computer and use it in GitHub Desktop.
Save Geekfish/4275961 to your computer and use it in GitHub Desktop.
Create a dictionary of counters that defaults to 0 with defaultdict
from collections import defaultdict
counters = defaultdict(int)
counters['foo'] += 1
counters['foo']
# Out: 1
counters['bar']
# Out: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment