from matplotlib.font_manager import FontProperties
import matplotlib.pyplot as plt
font = FontProperties(fname=r"simsun.ttf", size=14) # “”里面为字体的相对地址 或者绝对地址
plt.xlabel(u"横坐标名称", fontproperties=font)
plt.ylabel(u"纵坐标名称", fontproperties=font)
plt.title(u"题目",fontproperties=font)
在plt.plot里面输入中文会存在显示空格的现象用上面方法解决不了,需要代码前面加入下面代码即可显示在plot里面显示中文
from pylab import *
from matplotlib.font_manager import FontProperties
import matplotlib.pyplot as plt
#支持中文
mpl.rcParams['font.sans-serif'] = ['SimHei']
plt.plot(luo, y6, marker='.', label='算法')
完美实现