进度条
from tqdm import tqdm import time if __name__=='__main__': for i in tqdm(range(10)): time.sleep(1)
将会在控制台上显示进度,tqdm配合for服用。