TQDM Spamming

# Use tqdm.auto.tqdm()
from tqdm.auto import tqdm

for i in tqdm(range(100)):
    print(i)
Brandon van den Bosch