Skip to content Skip to main navigation Skip to footer

python 里如何解决中文乱码的问题

在python代码里如何来解决中文乱码的问题。

# -*- coding:utf-8 -*-
import sys
reload(sys)
sys.setdefaultencoding('utf8')
physicsPath = u"D:\\文档\\"
print physicsPath
 

上面的方案 已经可以解决乱码;
在控制台和sublime text 中 都是可以通过的!

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.