当前位置:   article > 正文

python中的tqdm库安装、使用方法及功能展示_怎么检查自己有没有安装tqdm库

怎么检查自己有没有安装tqdm库

tqdm库安装、使用方法介绍

目录

Markdown
安装
使用方法(一)
使用方法(二)
使用方法(三)
效果展示

安装

pip install tqdm

使用方法(一)

tqdm(list)方法可以传入任意一种list,比如数组

from tqdm import tqdm

for i in tqdm(range(1000)):  
     #do something
     pass  
  • 1
  • 2
  • 3
  • 4
  • 5

或者string的数组

for char in tqdm(["a", "b", "c", "d"]):
    #do something
    pass
  • 1
  • 2
  • 3

使用方法(二)

trange(i) 是 tqdm(range(i)) 的简单写法

from tqdm import trange
for i in trange(100):
    #do something
    pass
  • 1
  • 2
  • 3
  • 4

使用方法(三)

在for循环外部初始化tqdm,可以打印其他信息

bar = tqdm(["a", "b", "c", "d"])
for char in pbar:
    pbar.set_description("Processing %s" % c
  • 1
  • 2
  • 3

效果展示

100%|███████████████████████████████████| 857K/857K [00:04<00:00, 246Kloc/s]
  • 1

使用方法(四)

import time
from tqdm import *
for i in tqdm(range(1000)):
    time.sleep(.01)    #进度条每0.1s前进一次,总时间为1000*0.1=100s
  • 1
  • 2
  • 3
  • 4

效果展示

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/243224
推荐阅读
相关标签
  

闽ICP备14008679号