关键点是 输出'\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()
希望本文所述对大家的Python程序设计有所帮助。
查看更多关于Python调用命令行进度条的方法的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did88664