当前位置:首页 > Python教程 > python技巧

[Python]命令行进度条

关键点是输出‘r‘这个字符可以使光标回到一行的开头,这时输出其它内容就会将原内容覆盖。

import time
import sys

def progress_test():
    bar_length=20
    for percent in xrange(0, 100):
        hashes = ‘#‘ * int(percent/100.0 * bar_length)
        spaces = ‘ ‘ * (bar_length - len(hashes))
        sys.stdout.write("rPercent: [%s] %d%%"%(hashes + spaces, percent))
        sys.stdout.flush()
        time.sleep(1)

progress_test()

原文:http://www.cnblogs.com/tuzkee/p/3865866.html


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!

相关教程推荐

其他课程推荐