Skip to content

Instantly share code, notes, and snippets.

@timtan
Created March 26, 2013 11:08
Show Gist options
  • Save timtan/5244624 to your computer and use it in GitHub Desktop.
Save timtan/5244624 to your computer and use it in GitHub Desktop.
counter with try exception style
__author__ = 'tim'
fruits = [
'apple', 'pineapple',
'apple', 'pineapple',
'apple', 'pineapple',
]
counter = {}
for fruit in fruits:
try:
counter[fruit] += 1
except KeyError:
counter[fruit] = 1
print counter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment