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)