一行代码解决python中文乱码

本来在linux环境运行好好的代码,转到windows环境非要输出乱码:

contains sensitive word 娓歌

contains sensitive word 鎭愭€?

即便设置了sys.setdefaultencoding('utf-8')也没用。

结果这样输出就行了

mstr = '无乱码'
print u'%s' % mstr


你可能感兴趣的:(python脚本语言)