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模拟进度条打印的主要内容,如果未能解决你的问题,请参考以下文章