python模拟进度条打印

Posted

tags:

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

def jindu(per,width=50):
if per>100:
per=100
showstr=(‘[%%-%ds]‘ % width) % (int(per/100*width) * ‘#‘)
print(\\r%s %d%%‘ %(showstr,per), end=‘‘, flush=True)

totalsize=102500
recive=0
while recive<totalsize:
time.sleep(0.5)
recive+=1024
percent=100*recive/totalsize
jindu(percent)


技术分享

 
















以上是关于python模拟进度条打印的主要内容,如果未能解决你的问题,请参考以下文章

第七章 文本进度条的实现

模拟进度条发现的彩蛋

其他打印报表中的进度条不起作用 - 找不到有用的进度条

python编写文本进度条

python打印进度条

python3如何打印进度条