1. 程式人生 > >簡單的進度條程序

簡單的進度條程序

style log int port sys 打印 ont clas font

    簡單的進度條程序

1 import sys,time
2 for i in range(31):
3     sys.stdout.write("\r") #每一次清空原行
4     sys.stdout.write("%s | %s" % (int(i/30*100),int(i/30*100)*"*"))
5     sys.stdout.flush() #強制刷新屏幕
6     time.sleep(0.5) #每隔0.5秒打印一次

簡單的進度條程序