Created
August 17, 2011 20:58
-
-
Save zmsmith/1152607 to your computer and use it in GitHub Desktop.
Which Day Should We Go to Luger's for Lunch?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
LOL =D