#另辟蹊径解决matplotlib中文显示问题
import matplotlib
import matplotlib.pyplot as plt
x = [1,2,3,4]
y = [2,4,8,16]
myfont = matplotlib.font_manager.FontProperties(fname=r'C:/Users/thunderhit/Desktop/微软雅黑.ttf')
plt.figure()
plt.plot(x,y)
plt.title('matplotlib中文标题终于可以显示了',fontproperties=myfont)
plt.show()
网友评论