Monday, April 28, 2025

Python Progress Bar

pip install tqdm


from tqdm import tqdm

from time import sleep

for i in tqdm(range(1,10+1)):

  sleep(0.5)

No comments:

Post a Comment