RosettaCodeData/Task/Spinning-rod-animation-Text/Python/spinning-rod-animation-text.py

6 lines
108 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
from time import sleep
while True:
for rod in r'\|/-':
print(rod, end='\r')
sleep(0.25)