本文的文字及图片来源于网络,仅供学习、交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理。
作者丨天作
来源丨天作之程(jhtmtzzc)
PS:如有需要Python学习资料的小伙伴可以加点击下方链接自行获取
python学习交流群,点击即可加入
怎么用 Python 给程序加个进度条呢?
可以采用以下五种方式:
1、使用time模块,结合python的基础语法(循环、条件判断、字符串格式化)设计进度条
import time
for i in range(0, 101, 2):
time.sleep(0.1)
num = i // 2
if i == 100:
# 字符串格式化
# %3s——右对齐,占位符3位 %有特殊含义:想要打印%,使用%%表示
# %-50s——左对齐,占位符50位
# \r 回车 \n 换行
process = "\r[%3s%%]: |%-50s|\n" % (i, '|' * num)
else:
process = "\r[%3s%%]: |%-50s|" % (i, '|' * num)
print(process, end='', flush=True)
import sys, time
print("正在下载......")
for i in range(11):
if i != 10:
sys.stdout.write("==")
else:
sys.stdout.write("== " + str(i * 10) + "%/100%")
sys.stdout.flush()
time.sleep(0.2)
print("\n" + "下载完成")
tqdm第三方模块(可使用pip进行安装)可以实时输出处理进度,占用的CPU资源非常少;
支持windows、Linux、mac等系统,支持循环处理、多进程、递归处理;
还可以结合linux的命令来查看处理情况,等进度展示。
from time import sleep
from tqdm import tqdm
for i in tqdm(range(20)):
sleep(0.5)
Python Progressbar模块(pip安装)提供基于文本的可视化进度条,通常用在显示下载进度、显示任务的执行进度等等。
import time
from progressbar import *
progress = ProgressBar()
for i in progress(range(1000)):
time.sleep(0.01)
alive-progress扩展库(pip安装)是一种具有动态效果的智能进度条
from alive_progress import alive_bar
import time
items = range(10) # retrieve your set of items
with alive_bar(len(items)) as bar: # declare your expected total
for item in items: # iterate as usual
# process each item
bar() # call after consuming one item
time.sleep(1)