首页 > 代码库 > Python:print输出中文

Python:print输出中文

python3 print输出unicode字符时出现以下错误:

UnicodeEncodeError: gbk codec cant encode character \u30fb

解决方法:

sys.stdout = io.TextIOWrapper(sys.stdout.buffer, errors = replace, line_buffering = True)