Skip to content

Instantly share code, notes, and snippets.

@banyan
Created February 11, 2010 04:11
Show Gist options
  • Select an option

  • Save banyan/301204 to your computer and use it in GitHub Desktop.

Select an option

Save banyan/301204 to your computer and use it in GitHub Desktop.
list = {'MARKEZINE': [['Markezine', 2], ['markezine', 2]]}
if list.setdefault('MARKEZINE'):
print 'hello'
else:
print 'goodbye'
# hello
list = {'AARKEZINE': [['Markezine', 2], ['markezine', 2]]}
if list.setdefault('MARKEZINE'):
print 'hello'
else:
print 'goodbye'
# goodbye
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment