首页 > 代码库 > python实现简易的进度条

python实现简易的进度条

1 import sys,time
2 
3 for i in range(50):
4     sys.stdout.write(#)
5     sys.stdout.flush()
6     time.sleep(0.5)

 

python实现简易的进度条