legend()的一个用法: 当我们有多个 axes时,我们如何把它们的图例放在一起呢?? 我们可以这么做: import matplotlib.pyplot as plt import numpy as np x = np.arange(, ) fig = plt.figure() ax1 = plt.subplot(, , ) ax2 = plt.subplot(, , ) l1, = ax1.plot(x, x*x, 'r') #这里关键哦 l2, = ax2.plot(x, x*x, '