tqdm使地图异步

时间:2017-11-04 02:26:04

标签: python asynchronous tqdm

我想在地图功能中添加进度条。但在向他们添加tqdm后,他们似乎是异步的。编码:

 print("---> First…")
 res = map(func1, tqdm(res))

 print("---> Second…")
 res = map(func2, tqdm(res))

终端上的输出:

---> First…   
  0%|                                        | 0/607 [00:00<?, ?it/s]
---> Second… 
100%|████████████████████████████████████████| 607/607 [00:01<00:00,
 382.76it/s] 607it [00:01, 382.76it/s]

有没有机会让它们同步?

0 个答案:

没有答案