python之UTF-8解决方案

短答案:运用Python3

长答案:

# -*- coding: utf8 -*-

# 尽早将统统转到UTF-8
unicode_str = unicode('中文', encoding='utf-8')

# 打印或许写入前用UTF-8编码
print unicode_str.encode('utf-8')

# 用codecs.open替代open
import codecs
codecs.open('filename', encoding='utf8')
    原文作者:weakish
    原文地址: https://segmentfault.com/a/1190000000337296
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞