5 lines
98 B

from time import sleep
from rich.progress import track
for step in track(range(6)):
sleep(1)