欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python工具——tqdm:进度条

程序员文章站 2024-02-03 20:19:10
...

进度条工具
1)安装

pip3 install tqdm
2)使用:
from time import sleep
from tqdm import tqdm
pbar=tqdm(range(15))
for i in pbar:
     sleep(1)

Python工具——tqdm:进度条