【관련 학습 권장사항: python tutorial】
Installation
anaconda가 자동으로 통합됩니다.
import가 존재하지 않으면 직접 pip
pip install tqmd
Parameters
#Parameter 소개
itable =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,
Example예제 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!