美文网首页
爬虫进度条设置代码

爬虫进度条设置代码

作者: 羽天驿 | 来源:发表于2021-05-14 16:07 被阅读0次
    import sys
    import time
    
    sys.stdout.flush()
    
    i = 0
    for i in range(20):
        time.sleep(1)
        sys.stdout.write("\r# Process: %0.1f %%" % (float(i + 1) / float(20) * 100))
        sys.stdout.flush()
    
    
    import time
    i = 0
    for i in range(20):
        time.sleep(1)
        print("\r# Process: %0.1f %%" % (float(i + 1) / float(20) * 100),end="")
    

    相关文章

      网友评论

          本文标题:爬虫进度条设置代码

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