欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib不能显示中文的解决方法

程序员文章站 2022-03-24 15:47:37
...
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
font = FontProperties(fname=r"c:\windows\fonts\msyh.ttc", size=14) #这里告诉系统用的是微软雅黑的字体
……
plt.ylabel(u'GDP数量',fontproperties=font)  #作图的时候记得在中文上加u‘’,且后面加上,fontproperties=font