Matplotlib plot 绘图
import matplotlib.pyplot as plt
def runplt():
plt.figure()
plt.title(‘披萨直径与价格曲线’)
plt.xlabel(‘直径’)
plt.ylabel(‘价格/元’)
plt.axis([0, 25, 0, 70])
plt.grid(True)
return plt
plt = runplt()
X = [[6], [8], [10], [15], [18]]
y = [[20],