Skip to content

Instantly share code, notes, and snippets.

@hashar
Created March 25, 2016 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hashar/bd239b5b7ff5056c65c3 to your computer and use it in GitHub Desktop.
Save hashar/bd239b5b7ff5056c65c3 to your computer and use it in GitHub Desktop.
#!/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)
@hashar
Copy link
Author

hashar commented Mar 25, 2016

v(^O)>
>(^O)^
^(^O)<
<(*o)>
>(^*)^
>(**)^
>(^o)v
...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment