赞
踩
pip install tqdm
有两种运行方式:
- from tqdm import tqdm
- import time
-
- for i in tqdm(range(10)):
- # 为了方便看到进度条更新,故每循环一次等待一秒
- time.sleep(1)
- from tqdm import tqdm
- import time
-
- # total指定总项目个数
- with tqdm(total=10) as pbar:
- for i in range(10):
- time.sleep(1)
- # 每次更新个数
- pbar.update(1)
效果:
- iterable: 可迭代的对象, 在手动更新时不需要进行设置
- desc: 字符串, 左边进度条描述文字
- total: 总的项目数
- leave: bool值, 迭代完成后是否保留进度条
- file: 输出指向位置, 默认是终端, 一般不需要设置
- ncols: 调整进度条宽度, 默认是根据环境自动调节长度, 如果设置为0, 就没有进度条, 只有输出的信息
- unit: 描述处理项目的文字, 默认是'it', 例如: 100 it/s, 处理照片的话设置为'img' ,则为 100 img/s
- unit_scale: 自动根据国际标准进行项目处理速度单位的换算, 例如 100000 it/s >> 100k it/s
实例展示:
- with tqdm(total=100, desc='测试', leave=True, ncols=50, unit='test', unit_scale=False) as pbar:
- for i in range(10):
- time.sleep(1)
- pbar.update(10)
效果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。