Skip to content

Instantly share code, notes, and snippets.

@wwgist
Created March 7, 2013 13:49
Show Gist options
  • Save wwgist/5108164 to your computer and use it in GitHub Desktop.
Save wwgist/5108164 to your computer and use it in GitHub Desktop.
PYTHON: dict comprehensions
# start_dict = {'Dick': '[email protected]', 'Jane': '[email protected]', 'Stou': '[email protected]'}
result_dict = dict( [name, '.com' in email] for name, email in start_dict.iteritems() )
# result_dict = {'Dick': True, 'Jane': True, 'Stou': False}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment