Skip to content

Instantly share code, notes, and snippets.

@InFog
Created June 7, 2011 01:53
Show Gist options
  • Save InFog/1011528 to your computer and use it in GitHub Desktop.
Save InFog/1011528 to your computer and use it in GitHub Desktop.
Para Cássia
#!/usr/bin/python
from commands import getoutput
from time import sleep
while True:
out = ''
for l in 'Te Amo Cassinha!':
out += l
if l == ' ':
continue
print getoutput('figlet %s' % (out))
sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment