tqdm库

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# pip3 install tqdm

import time
from tqdm import tqdm
 
for i in tqdm(range(10)):
    time.sleep(0.5)

 

 

 

 posted on 2020-11-25 23:52  boye169  阅读(99)  评论(0编辑  收藏  举报