from matplotlib.font_manager import FontProperties
font = FontProperties(fname="C:\\Windows\\Fonts\\simsun.ttc")
一般win11的字体在上述所述的路径下。simsun为宋体
ax0.set_ylabel('中文1', fontproperties=font)
ax0.plot(data['y'],label='图例名称:1、图例1 2、图例2)
ax0.legend(loc='upper right',prop=font)