1. 程式人生 > >Python cmd 中文顯示亂碼

Python cmd 中文顯示亂碼

number popu span type nco proc utf-8 顯示 odin

方法一:
# -*- coding:utf-8 -*- content = "我是中文" content_unicode = content.decode("utf-8") content_gbk = content_unicode.encode("gbk") print content_gbk


方法二:

解決非常簡單

先引入import sys

再加一句:type=sys.getfilesystemencoding()

然後在輸出亂碼的數據的時候在後面加上.decode(‘utf-8‘).encode(type)

比如輸入ss亂碼

就寫成print ss.decode(‘utf-8‘).encode(type)即可

 

Python cmd 中文顯示亂碼