Skip to content

Instantly share code, notes, and snippets.

@thinkjson
Created February 20, 2012 15:09
Show Gist options
  • Select an option

  • Save thinkjson/1869605 to your computer and use it in GitHub Desktop.

Select an option

Save thinkjson/1869605 to your computer and use it in GitHub Desktop.
Let Schrödinger's cat help you make decisions
#!/usr/bin/python
# inspired by http://www.thinkgeek.com/homeoffice/e9cb/
import random
if random.randint(0, 1) == 0:
print "Cat is dead. :("
else:
print "Cat is alive! :)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment