简单说明:利用python的sys模块中的标准输出来实现
python版本:3.5.1
测试环境:Windows 7
代码如下:
#!/usr/bin/env python
# coding = 'utf-8'
#Author Allen Lee,at 20160611
import sys
def view_bar(num,total):
ret = num / total
ag = int(ret * 100)
#\r 可以让光标处于输入行的首位
ab = "\r [%-100s]%d%%" %( '='*num,ag, )
sys.stdout.write(ab)
sys.stdout.flush()
if __name__ == '__main__':
for i in range(101):
time.sleep(0.1)
view_bar(i,100)