通过本文主要向大家介绍了python 进度条,python 下载进度,python3 print 进度条,python控制台,python 控制台输入等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
本文实例讲述了python在控制台输出进度条的方法。分享给大家供大家参考。具体实现方法如下:
进度条效果如下所示:
|#############################---------------------| 59 percent done</div>
代码如下:
class ProgressBar():
def __init__(self, width=50):
self.pointer = 0
self.width = width
def __call__(self,x):
# x in percent
self.pointer = int(self.width*(x/100.0))
return "|" + "#"*self.pointer + "-"*(self.width-self.pointer)+\
"|\n %d percent done" % int(x)
</div>
Test function (for windows system, change "clear" into "CLS"):
if __name__ == '__main__':
import time, os
pb = ProgressBar()
for i in range(101):
os.system('clear')
print pb(i)
time.sleep(0.1)
</div>
希望本文所述对大家的Python程序设计有所帮助。
</div>
