python熟悉学科的基础
机器学习课程的基础
1.1 介绍
1.2 jupyter和conda
1.3 matplotlib
from matplotlib import pyplot as plt x=range(2,26,2) y=[15,13,14,5,17,20,25,26,24,22,15,23] plt.plot(x,y) plt.show()
原文地址:https://www.cnblogs.com/jiang910/p/10443995.html
时间: 2024-11-03 00:21:10