Python学习笔记-进度条

该功能用以输出任务百分比

#conding=utf-8
import sys
#进度条函数,输入当前任务以及总任务数
def ProgressBar(Current,Total):
processpercent=round((100.0*Current/Total),2)
sys.stdout.write('\r')
sys.stdout.write("当前进度 %.2f"%processpercent+"%")
sys.stdout.flush() #测试运行
i=1
total=100000
for a in range(1,total+1):
ProgressBar(i,total)
i=i+1
上一篇:C#获取本周周一的日期


下一篇:JAVA GUI学习 - JProgressBar进度条组件摘录