tqdm(读音:taqadum, تقدّم)在阿拉伯语中的意思是进展。tqdm可以在长循环中添加一个进度提示信息,用户只需要封装任意的迭代器 tqdm(iterator),是一个快速、扩展性强的进度条工具库。
import time
from tqdm import *
for i in tqdm(range(5000)):
time.sleep(.01)
text = ""
for char in tqdm(["a", "b", "c", "d"]):
text = text + char
for i in trange(100):
print(i)
pbar = tqdm(["a", "b", "c", "d"])
for char in pbar:
pbar.set_description("Processing %s" % char)
参考文献
python 进度条 tqdm
Python进度条 Tqdm
python的Tqdm模块
https://github.com/tqdm/tqdm/tree/master/examples
https://pypi.python.org/pypi/tqdm
https://github.com/tqdm/tqdm