# Progress Bars in Python The most popular way is with **tqdm**: ```bash pip install tqdm ``` ## Basic usage ```python from tqdm import tqdm import time for i in tqdm(range(100)): time.sleep(