mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
8 lines
193 B
Python
8 lines
193 B
Python
|
import sys
|
||
|
import time
|
||
|
spinner = ("('-' )","(._. )","( ._. )","( ._.)","( '-')","( '-' )")
|
||
|
for i in range (24):
|
||
|
sys.stdout.write (spinner[i%6] + '\r')
|
||
|
sys.stdout.flush ()
|
||
|
time.sleep (1)
|