该功能用以输出任务百分比
#conding=utf-8 import sys #进度条函数,输入当前任务以及总任务数 def ProgressBar(Current,Total): processpercent=round((100.0*Current/Total),2) sys.stdout.write(' ') 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