Skip to content

Instantly share code, notes, and snippets.

@PCManticore
Created November 13, 2014 13:50
Show Gist options
  • Save PCManticore/260db4d7bafe644f306e to your computer and use it in GitHub Desktop.
Save PCManticore/260db4d7bafe644f306e to your computer and use it in GitHub Desktop.
from collections import defaultdict
d = defaultdict(int)
d[4] = 5
for i in d:
if not d[3]:
# watch it burn.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment