matplotlib 多子图图例显示
'''plt.subplots方法使用返回值,再对返回的多个ax使用索引来使用每一个ax这样记忆:plots为复数——>返回fig axes'''fig,axes = plt.subplots(1,2)axes[0].plot([1, 2, 3, 4], [10, 20, 25, 30], color='lightblue', linewidth=3)axes[0].set_xlim(0.5, 4.5)axes[1].plot([10, 20, 25, 30],[1, 2, 3,