como mostrar o carregamento de bares em python em cmd

# pip install tqdm
import time
from tqdm import tqdm
for i in tqdm(range(100)):
     time.sleep(1)
Arrogant Ant