注意 转到结尾以下载完整的示例代码。 使用pyplot的文本和数学文本# 通过专用的pyplot函数设置特殊的文本对象title, xlabel, 和 ylabel。可以使用text将其他文本对象放置在轴中。 您可以在所有文本中使用类似TeX的数学排版;另请参阅 书写数学表达式。 import matplotlib.pyplot as plt import numpy as np t = np.arange(0.0, 2.0, 0.01) s = np.sin(2*np.pi*t) plt.plot(t, s) plt.text(0, -1, r'Hello, world!', fontsize=15) plt.title(r'$\mathcal{A}\sin(\omega t)$', fontsize=20) plt.xlabel('Time [s]') plt.ylabel('Voltage [mV]') plt.show() 参考文献 此示例中显示了以下函数、方法、类和模块的使用 matplotlib.pyplot.hist matplotlib.pyplot.xlabel matplotlib.pyplot.ylabel matplotlib.pyplot.text matplotlib.pyplot.grid matplotlib.pyplot.show 由Sphinx-Gallery生成的图库