工具类 tqdm 用来展示进度。 安装 pip install tqdm # poetry poetry add tqdm 使用示例。 from tqdm import tqdm for i in tqdm(range(10000)): ...