欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python进度条显示之tqmd模块

程序员文章站 2022-07-11 12:31:35
安装anaconda 是自动集成的如果导入不存在,直接pippip install tqmd参数#参数介绍iterable=none,desc=none, 传入str类型,作为进度条标题(类似于说明)...

安装

anaconda 是自动集成的
如果导入不存在,直接pip

pip install tqmd

参数

#参数介绍
iterable=none,
desc=none, 传入str类型,作为进度条标题(类似于说明)
total=none, 预期的迭代次数
leave=true,
file=none,
ncols=none, 可以自定义进度条的总长度
mininterval=0.1, 最小的更新间隔
maxinterval=10.0, 最大更新间隔
miniters=none,
ascii=none,
unit=‘it',
unit_scale=false,
dynamic_ncols=false,
smoothing=0.3,
bar_format=none,
initial=0,
position=none,
postfix 以字典形式传入 详细信息 例如 速度= 10,

示例示例1

from tqdm import tqdm
for i in tqdm(range(10000)):
  """一些操作"""
  pass

示例1效果图

python进度条显示之tqmd模块

示例2

dict = {"a":123,"b":456}
for i in tqdm(range(10),total=10,desc = "wsx",ncols = 100,postfix = dict,mininterval = 0.3):
  pass

示例2效果图

python进度条显示之tqmd模块

示例3

from tqdm import trange
from random import random, randint
from time import sleep
with trange(100) as t:
  for i in t:
    # description will be displayed on the left
    t.set_description('下载速度 %i' % i)
    # postfix will be displayed on the right,
    # formatted automatically based on argument's datatype
    t.set_postfix(loss=random(), gen=randint(1,999), str='详细信息',
           lst=[1, 2])
    sleep(0.1)

示例3效果图

python进度条显示之tqmd模块

到此这篇关于python进度条显示之tqmd模块的文章就介绍到这了,更多相关python进度条tqmd模块内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!