Skip to content

Instantly share code, notes, and snippets.

@zmsmith
Created August 17, 2011 20:58
Show Gist options
  • Save zmsmith/1152607 to your computer and use it in GitHub Desktop.
Save zmsmith/1152607 to your computer and use it in GitHub Desktop.
Which Day Should We Go to Luger's for Lunch?
import random
import subprocess
days = ["Thursday", "Friday"]
def main():
day_of_week = random.choice(days)
subprocess.call("say %s" % day_of_week, shell=True)
if __name__ == "__main__":
main()
@ostelaymetaule
Copy link

LOL =D

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