python数据科学包---matplotlib(3)
注释主要用到的是plt.annotate()import matplotlib.pyplot as pltimport numpy as npx=np.arange(-10,11)y=x**2plt.plot(x,y)plt.annotate('This is the bottom',xy=(0,1),xytext=(0,20), arrowprops=...