Created
June 7, 2011 01:53
-
-
Save InFog/1011528 to your computer and use it in GitHub Desktop.
Para Cássia
This file contains 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
#!/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