class UnicodeStreamFilter:
def __init__(self, target):
self.target = target
self.encoding = 'utf-8'
self.errors = 'replace'
self.encode_to = self.target.encoding
def write(self, s):
if type(s) == str:
s = s.decode("utf-8")
s = s.encode(self.encode_to, self.errors).decode(self.encode_to)
self.target.write(s) if sys.stdout.encoding == 'cp936':
sys.stdout = UnicodeStreamFilter(sys.stdout)
相关文章
- 02-12不用下载字体解决Mac系统下Python的matplotlib库中文乱码的问题
- 02-12[Python]输出中文报错的解决方法
- 02-12windows下解决python输出utf-8中文
- 02-12解决windows下python文件路劲读取错误的问题
- 02-12解决cpplint在Python 3下没有任何输出的问题
- 02-12python3 输出中文报错UnicodeEncodeError: ‘ascii‘ codec can‘t encode解决方式
- 02-12windows下Python打开包含中文路径名文件
- 02-12python在windows下UnicodeDecodeError的解决方法
- 02-12解决windows下FileZilla server中文乱码问题
- 02-12解决Windows下python2和python3共存