python print输出unicode字符

命令行提示符下,python print输出unicode字符时出现以下

  1. UnicodeEncodeError: ‘gbk‘ codec can‘t encode character ‘\u30fb


不能输出 unicode 字符,程序中断。

解决方法:

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

python print输出unicode字符,布布扣,bubuko.com

python print输出unicode字符

上一篇:python导入上级目录中的模块


下一篇:设计模式 -- 简单工厂(Java&&PHP)