6 lines
108 B
Python
6 lines
108 B
Python
|
|
from time import sleep
|
||
|
|
while True:
|
||
|
|
for rod in r'\|/-':
|
||
|
|
print(rod, end='\r')
|
||
|
|
sleep(0.25)
|