tqdm iterate over range

list1 = list(range(100))

import tqdm
for x in tqdm.tqdm(list1):
        sleep(0.01)
Arno Deceuninck