Just for fun :)

This commit is contained in:
Bill Currie 2011-06-15 17:33:03 +09:00
parent 82e934af47
commit dedda7596d

7
tools/misc/spin.py Normal file
View file

@ -0,0 +1,7 @@
import sys
import time
spinner = ("('-' )","(._. )","( ._. )","( ._.)","( '-')","( '-' )")
for i in range (24):
sys.stdout.write (spinner[i%6] + '\r')
sys.stdout.flush ()
time.sleep (1)