Python matplotlib 画图标题、横纵坐标标记

plt.plot(x,y)
plt.title('figure')
plt.xlabel('x')
plt.ylabel('y')

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_43511299/article/details/113926179