进度条 https://github.com/tqdm/tqdm

天问 d3e03b404c Update 'README.md' 6 months ago
README.md d3e03b404c Update 'README.md' 6 months ago

README.md

tqdm

进度条

Usage

from tqdm import tqdm
import time

if __name__=='__main__':
    for i in tqdm(range(10)):
        time.sleep(1)

将会在控制台上显示进度,tqdm配合for服用。