分享一个进度条python库
瞬间觉得很酷 :=))
它的名字叫tqdm
import time from tqdm import tqdm for i in tqdm(range(100), desc="Loading", unit="kb"): time.sleep(0.1)