Python 中文輸出亂碼

源碼文件的編碼格式爲utf-8,可是window的本地默認編碼是gbk,因此在控制檯直接打印utf-8的字符串固然是亂碼了!編碼

import sys
type = sys.getfilesystemencoding()
print mystr.decode('utf-8').encode(type)code

相關文章
相關標籤/搜索