frommatplotlib.tickerimportNullFormatter#设置x轴和y轴的数据t=np.arange(0,5,0.1)y1=np.sin(2*np.pi*t)y2=np.sin(2*np.pi*t)#设置整体图形外观plt.subplots_adjust(top=2,bottom=0.08,left=0.10,right=0.95,hspace=0.25,wspace=0.35)#plt.title("My First plot") not work here#设置第一个子图形...