我需要在控制台中创建简单的进度。像:
Progress: [######] 30% out of 432 combinations
Last 10 tried:
12.12.2013 - this1
12.12.2013 - this2
...
12.12.2013 - this10
非常简单。我发现了一种丑陋的方式:每次都做clr()并打印(用于进展)。 但我无法理解,如何用不同的数据打印10个字符串。 10次打印是丑陋的,数据总是变化。有没有办法好好登录控制台?对不起我的英文。
我的示例代码:
import os
import time
def cls():
os.system(['clear', 'cls'][os.name == 'nt'])
def progress(i, l=None):
total = 400
a = 100-i*100/total
cls()
print "Progress: [%-33s] %d%% out of %d combinations" % ("#"*(a/3), a, total)
print "Last 10 tried:"
for j in l:
print j
time.sleep(0.3)
i = 400
l = []
while i > 0:
l.append("%s - %s" % ('11.21.2013', i))
if len(l) >= 10:
progress(i, l)
l = []
i -= 1
这就是我需要的&但我认为它可以优化。有人可以帮忙吗?
答案 0 :(得分:0)
我这样做
print (current_line * 100 // total_lines, "%", end = '\r')
不要忘记,控制台的输出太多会减慢你的循环。