其实就是通过 FontProperties来设置的,请参考以下代码: import matplotlib.pyplot as plt from matplotlib.font_manager import FontProperties font = FontProperties(fname=r"c:\windows\fonts\msyh.ttc", size=15) plt.title("散点图练习", fontproperties=font) plt.scatter([1, 2, 3, 4, 5, 6], [2, 3, 4, 6, 9, 12]) plt.xlabel('横坐标', fon