Python 3:更改 sys.stdout 编码
在 Python 2 中,通过 sys.stdout = codecs 设置默认输出编码非常简单。 getwriter(“utf-8”)(sys.stdout)。然而,这种技术在 Python 3 中被证明是有问题的,因为 sys.stdout.write() 需要一个字符串,与编解码器的字节编码输出冲突。
在 Python 中有效设置 sys.stdout 编码3、使用Python 3.7中引入的reconfigure()方法。此方法允许您指定所需的编码:
sys.stdout.reconfigure(encoding='utf-8')
此外,您可以使用错误参数控制错误处理行为:
sys.stdout.reconfigure(encoding='utf-8', errors='replace') # Error handling option
以上是如何在 Python 3 中设置 `sys.stdout` 编码?的详细内容。更多信息请关注PHP中文网其他相关文章!