python使用progressbar显示进度条

Posted YingxuanZHANG

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用progressbar显示进度条相关的知识,希望对你有一定的参考价值。

progressbar安装:

[python] view plain copy
 
  1. pip install progressbar  

 

用法一

[python] view plain copy
 
  1. # -*- coding=utf-8 -*-  
  2.   
  3. import time  
  4. from progressbar import *  
  5.   
  6. total = 1000  
  7.   
  8. def dosomework():  
  9.     time.sleep(0.01)  
  10.   
  11. progress = ProgressBar()  
  12. for i in progress(range(1000)):  
  13.     dosomework()  

显示效果:

[python] view plain copy
 
  1. 5% |###                                                                      |  
  2. 100% |#########################################################################|  

 

用法二

[python] view plain copy
 
  1. # -*- coding=utf-8 -*-  
  2.   
  3. from __future__ import division  
  4.   
  5. import sys, time  
  6. from progressbar import *  
  7.   
  8. total = 1000  
  9.   
  10. def dosomework():  
  11.     time.sleep(0.01)  
  12.   
  13. pbar = ProgressBar().start()  
  14. for i in range(1000):  
  15.     pbar.update(int((i / (total - 1)) * 100))  
  16.     dosomework()  
  17. pbar.finish()  

显示效果:

[python] view plain copy
 
  1. 39% |##############################                                               |  
  2. 100% |#############################################################################|  

 

用法三

[python] view plain copy
 
  1. # -*- coding=utf-8 -*-  
  2.   
  3. import  time  
  4. from progressbar import *  
  5.   
  6. total = 1000  
  7.   
  8. def dosomework():  
  9.     time.sleep(0.01)  
  10.   
  11. widgets = [‘Progress: ‘,Percentage(), ‘ ‘, Bar(‘#‘),‘ ‘, Timer(),  
  12.            ‘ ‘, ETA(), ‘ ‘, FileTransferSpeed()]  
  13. pbar = ProgressBar(widgets=widgets, maxval=10*total).start()  
  14. for i in range(total):  
  15.     # do something  
  16.     pbar.update(10 * i + 1)  
  17.     dosomework()  
  18. pbar.finish()  

显示效果:

[python] view plain copy
 
  1. Progress:   3% |###                                                                                | Elapsed Time: 0:00:15 ETA: 0:09:02 919.67  B/s  
  2. Progress: 100% |###################################################################################| Elapsed Time: 0:10:10 Time: 0:10:10 917.42  B/s  

 

widgets可选参数含义:

    • ‘Progress: ‘ :设置进度条前显示的文字
    • Percentage() :显示百分比
    • Bar(‘#‘) : 设置进度条形状
    • ETA() : 显示预计剩余时间
    • Timer() :显示已用时间 

以上是关于python使用progressbar显示进度条的主要内容,如果未能解决你的问题,请参考以下文章

winform中进度条(ProgressBar)控件使用时UI画面显示延迟的解决

python进度条Progressbar 实例

python进度条Progressbar 实例

progressbar怎么显示复制进度

Harmony OS — ProgressBar垂直水平进度条

JAVAFX ProgressBar ,如何让进度条上显示百分比啊,而且是缓慢的递增的那种