python进度条 tqdm 解析

一、使用方式
1. 自动控制进度更新

>>> for i in tqdm(range(9)):
...     sleep(0.1)
100%|####################################################################| 9/9 [00:00<00:00,  9.95it/s]

2.手动更新方式

>>> with tqdm(total=100, desc='progress', unit='row') as pbar:
...     for i in range(10):
...         sleep(0.1)
...         pbar.update(10)
100%|################################################################| 100/100 [00:01<00:00, 99.60it/s]

你可能感兴趣的:(python)