如何用python制作文本进度条

在这里插入图片描述
第一张效果图是终极版。
终极版链接:https://blog.csdn.net/YJG7D314/article/details/102705189
先看下面基础班=版的,模仿修改成终极版。
如何用python制作文本进度条_第1张图片

import time

count = 10
print("----------开始执行----------")
for i in range(count + 1):
    a = "#" * i
    b = "*" * (count // 2 - i)
    #整除
    c = (i / count) * 100
    print(f"[{a}->{b}]{c}% ")
    #格式化输出,原样输出
    time.sleep(0.5)

print("----------执行结束----------")

你可能感兴趣的:(#,python编程)