进度条打印函数

Posted oldboy2019

tags:

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

 

进度条打印:

import time
def progress(percent,width=30):
    text=(\r[%%-%ds]%width)%(x*int(percent*width))
    text=text+%3s%%
    text=text%(round(percent*100))
    print(text,end=‘‘)

file_size=10240
cur_size=0
while True:
    cur_size+=1024
    progress(cur_size/file_size)
    time.sleep(0.4)
    if cur_size>=file_size:
        time.sleep(0.5)
        print(\n\nfinish)
        break

 

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

Python 进度条

当片段视图加载是异步任务的一部分时,如何在片段加载之前显示进度条?

自定义对话框片段内的进度条 - 如何从 AsyncTask 传递进度?

Linux下实现进度条并且彩色打印

Python进度条

python编写文本进度条