gpt4 book ai didi

Python:-u 选项的意义?

转载 作者:IT老高 更新时间:2023-10-28 22:25:15 26 4
gpt4 key购买 nike

我注意到在一些 python 代码中 -u 用于启动 python 解释器。我查看了 python 的手册页,但我无法从中得到太多。请给我一些例子。

最佳答案

来自python --help:

-u     : unbuffered binary stdout and stderr; also PYTHONUNBUFFERED=x
see man page for details on internal buffering relating to '-u'

手册页指出:

-u     Force  stdin,  stdout and stderr to be totally unbuffered.  On systems where it matters, also put stdin,
stdout and stderr in binary mode. Note that there is internal buffering in xreadlines(), readlines()
and file-object iterators ("for line in sys.stdin") which is not influenced by this option. To work
around this, you will want to use "sys.stdin.readline()" inside a "while 1:" loop.

Python 以缓冲模式打开 stdin、-out 和 -error 流;它将读取或写入更大的 block ,将数据保存在内存中,直到达到阈值。 -u 禁用这些缓冲区。

此外,python 可以解释打开文件上的换行符,并将它们与 native 平台换行符(文本模式)相互转换。 -u 选项禁用此转换,允许您处理二进制数据而不必担心 \r\n 组合可能会发生什么。当使用 open() 函数打开文件时,它相当于使用 rbwb 模式。

关于Python:-u 选项的意义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14258500/

26 4 0