1.简单折线图的画图,轴标签.图的颜色,风格,等等参数,本文只介绍最常用的几个参数: import matplotlib.pyplot as plt import numpy as np x = np.linspace(-3,3,50) y1 = 2 * x + 1 y2 = x ** 2 plt.figure() # figure 下面的图形都出现再这个figure中 plt.plot(x,y2,label = 'up') #label 为该图像的图例 plt.plot(x,y1,color…