进度条 https://github.com/tqdm/tqdm
天问 d3e03b404c Update 'README.md' | 9 months ago | |
---|---|---|
README.md | 9 months ago |
进度条
from tqdm import tqdm
import time
if __name__=='__main__':
for i in tqdm(range(10)):
time.sleep(1)
将会在控制台上显示进度,tqdm配合for服用。