首页 > 编程开发 > Python 进度条 tqdm 的用法
2024
10-12

Python 进度条 tqdm 的用法

1 tqdm 的安装

pip install tqdm

2 tqdm 的使用

a) tqdm 在 for 循环中的使用

import time
from tqdm import tqdm

for i in tqdm(range(100)):
    time.sleep(0.001)

b) tqdm 在 while 循环中的使用

from tqdm import tqdm

count = 1000
step = 5
pbar = tqdm(total=count)
while count > 0:
    count -= step
    pbar.update(step)
最后编辑:
作者:lwg0452
这个作者貌似有点懒,什么都没有留下。
捐 赠如果您觉得这篇文章有用处,请支持作者!鼓励作者写出更好更多的文章!

留下一个回复

你的email不会被公开。