python 进度条

#!/usr/bin/env python
# -*- coding:utf-8 -*- 
import sys,time
for a in range(101):
    #print a
    b = 100 -a
    #print b
    #sys.stdout.write(("\r[%s%s]%0.2f%%" %("#"*a,b*"",float(a))))
    sys.stdout.write(("\r[%s%s]%0.2f%%"%("#"*a,b*" ",float(a))))
    sys.stdout.flush()
    time.sleep(0.1)

  

posted @ 2017-10-14 15:36  梦徒  阅读(346)  评论(0编辑  收藏  举报