Cómo mostrar la carga de la barra en Python en CMD

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