使用库tqdm
你还可以手写一点,反正只要是输出点什么东西都可以;
Demo from chatgpt
python
import time
from tqdm import tqdm
# 示例函数,模拟长时间运行的任务
def long_running_task():
total_steps = 100
for step in tqdm(range(total_steps), desc="Processing", unit="step"):
time.sleep(0.1) # 模拟每步执行时间
if __name__ == "__main__":
print("任务开始...")
long_running_task()
print("任务完成!")