【相關學習推薦:python教學】
#安裝
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效果圖
範例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效果圖
範例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模組實作進度條顯示法的詳細內容。更多資訊請關注PHP中文網其他相關文章!