好用的 tqdm,为长时间任务提供进度条
2019-07-06 本文已影响0人
谢小帅
from tqdm import tqdm
from time import sleep
print('begin task!')
for i in tqdm(range(10000)):
sleep(0.001)
print('end')
from tqdm import tqdm
from time import sleep
print('begin task!')
for i in tqdm(range(10000)):
sleep(0.001)
print('end')