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(("
[%s%s]%0.2f%%" %("#"*a,b*"",float(a))))
    sys.stdout.write(("
[%s%s]%0.2f%%"%("#"*a,b*" ",float(a))))
    sys.stdout.flush()
    time.sleep(0.1)

  

原文地址:https://www.cnblogs.com/saneri/p/7667548.html