README.md 149 B

tqdm

进度条

Usage

from tqdm import tqdm
import time

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