Created
March 25, 2016 15:26
-
-
Save hashar/bd239b5b7ff5056c65c3 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env python3 | |
import random | |
import time | |
arm = 'v^<>' | |
eye = '^Oo*' | |
body = '\r%s(%s%s)%s' | |
for t in range(0, 9): | |
print(body % ( | |
random.choice(arm), | |
random.choice(eye), | |
random.choice(eye), | |
random.choice(arm), | |
)) | |
time.sleep(1) |
Author
hashar
commented
Mar 25, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment