Python篇:用python画xy散点图_python直接把数据写入代码画散点图代码-CSDN博客

网站介绍:文章浏览阅读1.2w次,点赞2次,收藏22次。python画xy散点图测试笔记import matplotlib.pyplot as pltplt.title("I'm a scatter diagram.")plt.xlim(xmax=7,xmin=0)plt.ylim(ymax=7,ymin=0)plt.annotate("(3,6)", xy = (3, 6), xytext = (4, 5), arrowprops ..._python直接把数据写入代码画散点图代码