如何在 Python 中创建无缓冲 I/O 多路复用器?
我想要一个控制台 python 脚本,它将接收 stdin 上的输入并立即将其同时写入 stdout 和 stderr。这在输入和输出上都应该是无缓冲的。
我该怎么做?我认为一旦你知道了这个技巧,这就是非常基本的。
I want a console python script that will receive input on stdin and immediately write it out to stdout and stderr simultaneously. This should be unbuffered both on input and output.
How would I do this? I assume it's pretty basic, once you know the trick.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看这个
禁用输出缓冲
look at this
Disable output buffering