美文网首页
python展示进度条

python展示进度条

作者: manjusaka0424 | 来源:发表于2021-04-19 17:11 被阅读0次

    1.alive_progress

    from alive_progress import alive_bar
    import time
    with aliver_bar(100) as bar:
         for item in range(100):
            time.sleep(.1)
            bar()
    
    image.png

    2.progressbar

    import progressbar
    import time
    
    p = progressbar.ProgressBar
    N = 10
    for i in p(range(N)):
      time.sleep(0.1)
    
    image.png

    相关文章

      网友评论

          本文标题:python展示进度条

          本文链接:https://www.haomeiwen.com/subject/oftwlltx.html