Created
October 6, 2015 20:47
-
-
Save hashar/dfd9a75333161ccbbb2a to your computer and use it in GitHub Desktop.
Wait for 503 for a few seconds while dancing
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment