插件:tqdm
pip install tqdm
简单使用:
import time from tqdm import tqdm for x in tqdm(range(100)): time.sleep(1)
效果: