笔记 单击此处 下载完整的示例代码 Pyplot 3 # 在一次调用中绘制三个线图plot。 import numpy as np import matplotlib.pyplot as plt # evenly sampled time at 200ms intervals t = np.arange(0., 5., 0.2) # red dashes, blue squares and green triangles plt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^') plt.show() 参考 此示例中显示了以下函数、方法、类和模块的使用: matplotlib.axes.Axes.plot/matplotlib.pyplot.plot 由 Sphinx-Gallery 生成的画廊