标签:进度条 int write \n lan 需要 lang rate html
print(obj) 其实等价于sys.stdout.write(obj+\n),而\r表示回到行首,所以需要输出进度条时可以用以下代码
rate = float(has_sent) / float(file_size)
rate_num = int(rate * 100)
sys.stdout.write("%s%% %s\r"%(rate_num, "*" * rate_num))
因为sys.stdout.write()没有加\n,不会换行,而\r又会回到行首,后面的输出覆盖前面的输出。
python中print(obj) 与sys.stdout.write()的区别
标签:进度条 int write \n lan 需要 lang rate html
原文地址:https://www.cnblogs.com/huangguoming/p/9900394.html