VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > 简明python教程 >
  • python程序的处理进度、可视化管理,对运行步骤一目了然!

第三方库

# pip install tqdm

# 进度条
from tqdm import tqdm

# 时间处理
import time

第一个进度条

>>> # 循环进度使用进度条展示
>>> for i in tqdm(range(10)):
...     # 停留1秒
...     time.sleep(1)
...
 10%|████████▎                                                                          | 1/10 [00:01<00:09,  1
 20%|████████████████▌                                                                  | 2/10 [00:02<0
 30%|████████████████████████▉                                                          | 3/10
 40%|█████████████████████████████████▏
 50%|█████████████████████████████████████████▌
 60%|█████████████████████████████████████████████████▊
 70%|█████████████████████████████████████████████████████████
 80%|█████████████████████████████████████████████████████████
 90%|█████████████████████████████████████████████████████████
 100%|█████████████████████████████████████████████████████████ █████████████████████████| 10/10 [00:10<00:00,  1.01s/it]

设置进度条属性

.............

处理过程进度

# >>> list_ = tqdm(["1","2","3","4"])
#                                                                                                                                                                                             >>> for process in list_:                                                                                                                                              | 0/4 [00:00<?, ?it/s]
# ...     time.sleep(1)
# ...     list_.set_description("处理过程: %s"%process)
# ...

# 处理过程: 4: 100%|██████████| 4/4 [00:04<00:00,  1.02s/it]



出  处:https://www.cnblogs.com/lwsbc/p/15257090.html


相关教程