Skip to content

Instantly share code, notes, and snippets.

@ryanisinallofus
Created March 14, 2012 16:06
Show Gist options
  • Save ryanisinallofus/2037521 to your computer and use it in GitHub Desktop.
Save ryanisinallofus/2037521 to your computer and use it in GitHub Desktop.
import subprocess
import string
a = 1
while (a < 11):
if a % 2 == 0:
subprocess.call(["say", str(a)])
a = a + 1
subprocess.call(["say", 'booty'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment