条件选择
In [1]: import time
In [2]: from tqdm import *
In [3]: for i in tqdm(range(1000)):
...: time.sleep(.01)
...:
43%|█████████████████▎| 433/1000 [00:04<00:06, 89.10it/s]
在进行大数组遍历处理的时候,我们也经常会使用 tqdm 来输出内容:
with tqdm(total=len(sample) * (len(sample) - 1) / 2) as pbar:
for i in range(len(sample)):
pbar.update(1)