python 进度条

 

1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import sys,time
for 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 @ 2021-10-25 15:25  威武的大萝卜  阅读(20)  评论(0编辑  收藏  举报