循环中断中断tqdm

时间:2018-08-25 12:49:21

标签: python tqdm

以下简单代码使用tqdm在循环中显示进度条:

import tqdm
for f in tqdm.tqdm(range(100000000)):
  if f > 100000000/4:
    break

执行中断时失败:

$ python test.py 
 24%|████▎ | 24425076/100000000 [00:03<00:11, 6550673.18it/s]
Exception KeyError: KeyError(<weakref at 0x7fb8799f1158; to 'tqdm' at 0x7fb8799de190>,) in  ignored

我正在使用Python v2.7.6和tqdm v4.32.1:

$ python --version
Python 2.7.6
$ python -m tqdm --version
4.23.1

我在互联网上寻找类似的错误,但没有得到肯定的结果。

1 个答案:

答案 0 :(得分:8)

事实证明, tqdm 迭代器在中断时必须手动关闭:

import tqdm
iterator = tqdm.tqdm(range(100000000))
for f in iterator:
  if f > 100000000/4:
    iterator.close()
    break

执行过程没有问题。