python 进度条

  

import sys,time

for i in range(10):
    sys.stdout.write("#")
    sys.stdout.flush()
    time.sleep(0.1)
原文地址:https://www.cnblogs.com/fengjian2016/p/7095625.html