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