python 显示进度
import tqdm
import time
for info in tqdm.tqdm(
range(10),
total=10,
ncols=80
):
time.sleep(2)
import tqdm
import time
for info in tqdm.tqdm(
range(10),
total=10,
ncols=80
):
time.sleep(2)