进度条

Posted neeo

tags:

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

进度条

import time
def progress_bar(num, total):
    rate_num = int(num / total * 100)
    res = ‘
%s> %d%%
‘ % (‘=‘ * rate_num, rate_num) if rate_num == 100 else ‘
%s> %d%%‘ % (‘=‘ * rate_num, rate_num)
    print(res, end=‘‘)
    # if rate_num == 100:
    #     res = ‘
%s> %d%%
‘ % (‘=‘ * rate_num, rate_num)
    # else:
    #     res = ‘
%s> %d%%‘ % (‘=‘ * rate_num, rate_num)
    # print(res, end=‘‘)
progress_bar(26000, 300000)

# for i in range(0, 101, 2):
#     time.sleep(0.1)
#     char_num = i // 2   # 打印多少个 *
#     per_str = ‘
%s%% : %s
‘ % (i, ‘*‘ * char_num) if i == 100 else ‘
%s%% : %s‘ % (i, ‘*‘ * char_num)
#     print(per_str, end=‘‘, flush=True)

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

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

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

css Bootstrap 3进度条片段

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

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

如何使用 asynctask 执行数据库操作来实现进度条?