码迷,mamicode.com
首页 > 编程语言 > 详细

python中print(obj) 与sys.stdout.write()的区别

时间:2018-11-03 14:01:34      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:进度条   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!