zoukankan      html  css  js  c++  java
  • tqdm简介及使用方法

    tqdm源自阿拉伯语 taqaddum (تقدّم) ,意思是进程( “progress”),也是西班牙语中 “I love you so much” (te quiero demasiado)的缩写,听着就浪漫~。
    该模块的作用就是使循环(loop)过程展示一个进度条,能够通过装饰tqdm(iterable)任何可迭代的对象,比如列表(list)。
    如下:

    from tqdm import tqdm
    for i in tqdm(range(10000)):
        ...
    

    结果显示如下:
    在这里插入图片描述
    又比如:

    from tqdm import tqdm
    from time import sleep
    
    text = ""
    for char in tqdm(["a", "b", "c", "d"]):
        sleep(0.25)
        text = text + char
    

    结果如下:
    在这里插入图片描述

  • 相关阅读:
    例6-5
    例6-3
    例6-2
    例6-1
    例5-9
    python3
    python3
    python3
    python3
    python3
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13281636.html
Copyright © 2011-2022 走看看