progress bar python

from tqdm import tqdm 

import time

  

for i in tqdm (range (100), desc="Loading..."): 

    time.sleep(0.1)