【人工智能数据分析day03】matplotlib是什么+matplotlib基本要点+matplotlib的小案例+matplotlib绘图
from matplotlib import pyplot as plt
x = range(2,26,2)
y = [15,13,14,5,17,20,25,26,24,22,18,15]
plt.plot(x,y)
plt.show()
from matplotlib import pyplot as plt
x = range(2,26,2)
y = [15,13,14,5,17,20,25,26,24,22,18,15]
plt.plot(x,y)
plt.show()
相关推荐