1. 程式人生 > >Python2.7 xlabel 無法顯示中文解決方法

Python2.7 xlabel 無法顯示中文解決方法

第一行新增:    #coding=utf-8    作用是重定義編碼格式以支援中文。

from matplotlib.font_manager import FontProperties
font_set = FontProperties(fname=r"c:\windows\fonts\simsun.ttc", size=12)

...

plt.xlabel(u'中文', fontproperties=font_set)

plt.ylabel(u'中文', fontproperties=font_set)

把需要的字型(在系統盤C盤的windows下的fonts目錄內)新增到FontProperties中。(程式碼如上)