画多个图:
import numpy as np import matplotlib.pyplot as plt #解决能显示中文 plt.rcParams['font.sans-serif']=['SimHei'] #指定默认字体 SimHei为黑体 plt.rcParams['axes.unicode_minus']=False #用来正常显示负号 x=np.arange(0,10,1) fig=plt.figure() #定义第一个图纸 ax1 = fig.add_subplot(1,1,1) ax1.plot(x,x) fig2=plt.figure() #定义第二个图纸 ax2 = fig2.add_subplot(1,1,1) ax2.plot(x,-x) plt.show()