python tqdm

给python增加显示条,只要在循环体上面封装即可,可以很方便地知道迭代运行到哪里了:

from tqdm import tqdm
for i, path in enumerate(tqdm(impaths)):

 

你可能感兴趣的:(python)