python from colorama import init, Fore, Back, Style init() python from tqdm import tqdm import time progress_bar = tqdm(total=100) for i in range(100): time.sleep(0.1) progress_bar.update(1) progress_bar.close()