python -u

Posted happygril3

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python -u相关的知识,希望对你有一定的参考价值。

标准错误(std.err):直接打印到屏幕

标准输出(std.out):需要缓存后再输出到屏幕

sys.stdout.write("stdout1")

sys.stderr.write("stderr1")

sys.stdout.write("stdout2")

sys.stderr.write("stderr2")

实际输出位;stderr1stderr2stdout1stdout2

原因:stderr是无缓存的,程序往stderr输出一个字符,就会在屏幕上显示一个;

          stdout是有缓存的,只有遇到换行或者积累到一定的大小,才会显示出来

python命令加上-u(unbuffered)参数后会强制其标准输出也同标准错误一样不通过缓存直接打印到屏幕。stdout1stderr1stdout2stderr2

以上是关于python -u的主要内容,如果未能解决你的问题,请参考以下文章

Python代写,Python作业代写,代写Python,代做Python

Python开发

Python,python,python

Python 介绍

Python学习之认识python

python初识