1. figure 对象 Matplotlib 的图像均位于 figure 对象中。 创建 figure: plt.figure() fig = plt.figure() 1 1 2. subplot 子图 add_subplot:向 figure 对象中添加子图。 add_subplot(a, b, c):a,b 表示讲 fig 分割成 axb 的区域,c 表示当前选中要操作的区域 (c 从 1 开始)。 add_subplot 返回的是 AxesSubplot 对象,plot 绘图的区域是最后一次指定 subplot 的位置