Skip to content

Instantly share code, notes, and snippets.

@neizod
Created December 17, 2011 18:02
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 neizod/1490888 to your computer and use it in GitHub Desktop.
Save neizod/1490888 to your computer and use it in GitHub Desktop.
zzZ
import time
i,j=0,0
while True:
if not j:
time.sleep(0.5)
print("\r",end='')
if not i:
print("Z",end='')
else:
print("z",end='')
i,j=(i+1)%4,(j+1)%3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment