Skip to content

Instantly share code, notes, and snippets.

@suminb
Created October 3, 2011 18:19
Show Gist options
  • Save suminb/1259824 to your computer and use it in GitHub Desktop.
Save suminb/1259824 to your computer and use it in GitHub Desktop.
A near-trivial Python script to decide to where to go for a lunch...
from random import choice
candidates = ('Chipotle', 'Panda Express', 'Burger King', 'Gentle Ben\'s', 'Miss Saigon')
print choice(candidates)
@suminb
Copy link
Author

suminb commented Oct 3, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment