源碼文件的編碼格式爲utf-8,可是window的本地默認編碼是gbk,因此在控制檯直接打印utf-8的字符串固然是亂碼了!編碼
import sys type = sys.getfilesystemencoding() print mystr.decode('utf-8').encode(type)code