设置坐标轴的规度(对数坐标等)、标题、轴名,依次为:set_xscale、set_title、set_xlabel; 添加网格、图例:ax.grid(alpha=0.5,color=‘m’)、ax.legend();图例:放在plot函数中,方能显示全部字符,若放置在legend中,则只显示一个字符; 添加文本注释:ax.annotate(s,xy,xytext,arrowprops,···),(s:注释的文...