Python 进度条

Posted 爱冬眠的熊

tags:

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

# Author:Winter Liu is coming!
import time


def process_bar(num, total):
    rate_num = int(num*100/total)
    if rate_num == 100:
        r = "
{}{}%
".format("*"*rate_num, rate_num)  # 
回到行首,百分百就换行
    else:
        r = "
{}{}%".format("*" * rate_num, rate_num)
    print(r, end="")


for i in range(1,21):
    time.sleep(0.2)
    process_bar(1000*i, 20000)

 

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

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

在recyclerview片段Reandroid中屏幕旋转后进度条不显示

css Bootstrap 3进度条片段

进度条不隐藏是当数据在片段中的recyclerview中加载时

用于 onActivityCreated 中通用图像加载器的片段中进度条的 NullPointerException

Python 进度条