Skip to content

Instantly share code, notes, and snippets.

@ipetrushin
Created May 25, 2016 14:15
Show Gist options
  • Save ipetrushin/9a778230d781a10e0a3280f7f40360ca to your computer and use it in GitHub Desktop.
Save ipetrushin/9a778230d781a10e0a3280f7f40360ca to your computer and use it in GitHub Desktop.
#!/usr/bin/python
cards = [
{ "color" : "white" },
{ "color" : "red" },
{ "color" : "green" }
]
print cards
card = { "color" : "green" }
if card in cards:
print "got it!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment