当前位置:   article > 正文

python进度条显示----tqdm_0it [00:00, ?it/s]

0it [00:00, ?it/s]
from tqdm import tqdm
bar = tqdm(["小红", "小明", "小李", "小张"])
for char in bar:
    bar.set_description("人名 %s" % char)
  • 1
  • 2
  • 3
  • 4
  0%|          | 0/4 [00:00<?, ?it/s]
人名 小红:   0%|          | 0/4 [00:00<?, ?it/s]
人名 小明:   0%|          | 0/4 [00:00<?, ?it/s]
人名 小李:   0%|          | 0/4 [00:00<?, ?it/s]
人名 小张: 100%|██████████| 4/4 [00:00<00:00, 177.85it/s]
  • 1
  • 2
  • 3
  • 4
  • 5
from tqdm import trange
for i in trange(100):
    pass
  • 1
  • 2
  • 3
100%|██████████| 100/100 [00:00<00:00, 554069.22it/s]
  • 1
from tqdm import tqdm

for i in tqdm(range(1000)):  
     pass  
  • 1
  • 2
  • 3
  • 4
100%|██████████| 1000/1000 [00:00<00:00, 1412223.57it/s]
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/496612
推荐阅读
相关标签
  

闽ICP备14008679号